diff --git a/library/eden/twitter/streaming.php b/library/eden/twitter/streaming.php index 0333d33..2f6d58e 100644 --- a/library/eden/twitter/streaming.php +++ b/library/eden/twitter/streaming.php @@ -95,7 +95,7 @@ public function streamSite() { * Include messages from accounts the user follows * * @param integer - * @return this + * @return $this */ public function streamWithFollowings() { @@ -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() { @@ -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 @@ -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 @@ -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 @@ -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 @@ -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'; @@ -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; @@ -225,4 +225,4 @@ public function setStallWarning() { -------------------------------*/ /* Private Methods -------------------------------*/ -} \ No newline at end of file +}