Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bad PHPDoc makes my IDE cry. #32

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions library/eden/twitter/streaming.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public function streamSite() {
* Include messages from accounts the user follows
*
* @param integer
* @return this
* @return $this
*/
public function streamWithFollowings() {

Expand All @@ -107,11 +107,11 @@ public function streamWithFollowings() {
/**
* By default @replies are only sent if the current user follows both the sender
* and receiver of the reply. For example, consider the case where Alice follows Bob,
* but Alice doesn�t follow Carol. By default, if Bob @replies Carol, Alice does not
* but Alice doesn�t follow Carol. By default, if Bob @replies Carol, Alice does not
* see the Tweet. This mimics twitter.com and api.twitter.com behavior.
*
* @param integer
* @return this
* @return $this
*/
public function steamWithReplies() {

Expand All @@ -125,7 +125,7 @@ public function steamWithReplies() {
* from 1 to 150000 or from -1 to -150000
*
* @param integer
* @return this
* @return $this
*/
public function setCount($count) {
//Argument 1 must be a integer
Expand All @@ -140,7 +140,7 @@ public function setCount($count) {
* Indicating the users to return statuses for in the stream
*
* @param string|array
* @return this
* @return $this
*/
public function setFollow($follow) {
//Argument 1 must be a string
Expand All @@ -161,7 +161,7 @@ public function setFollow($follow) {
* Keywords to track. Phrases of keywords are specified by a comma-separated list.
*
* @param string|array
* @return this
* @return $this
*/
public function setTrack($track) {
//Argument 1 must be a string
Expand All @@ -182,7 +182,7 @@ public function setTrack($track) {
* Keywords to track. Phrases of keywords are specified by a comma-separated list.
*
* @param string|array
* @return this
* @return $this
*/
public function setLocation($locations) {
//Argument 1 must be a string
Expand All @@ -202,7 +202,7 @@ public function setLocation($locations) {
/**
* Specifies whether messages should be length-delimited
*
* @return this
* @return $this
*/
public function setDelimited() {
$this->_query['delimited'] = 'length';
Expand All @@ -213,7 +213,7 @@ public function setDelimited() {
/**
* Specifies whether stall warnings should be delivered
*
* @return this
* @return $this
*/
public function setStallWarning() {
$this->_query['stall_warnings'] = true;
Expand All @@ -225,4 +225,4 @@ public function setStallWarning() {
-------------------------------*/
/* Private Methods
-------------------------------*/
}
}