diff options
author | Zach Copley <zach@status.net> | 2009-10-09 17:53:35 -0700 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2009-10-09 17:53:35 -0700 |
commit | 061af8fa06ccb98f667d1ee670da2dbb179d8b0e (patch) | |
tree | 2a7ac2a05af3782d012d6e4b4fe8905a250de993 /actions/apisubscriptions.php | |
parent | b08d16ef2bf5995ca2feee2d2688e0080eaf5124 (diff) |
CamelCase all function names in the API code
Diffstat (limited to 'actions/apisubscriptions.php')
-rw-r--r-- | actions/apisubscriptions.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/actions/apisubscriptions.php b/actions/apisubscriptions.php index 1332fd71c..a952e20b8 100644 --- a/actions/apisubscriptions.php +++ b/actions/apisubscriptions.php @@ -108,7 +108,7 @@ class ApiSubscriptionsAction extends ApiBareAuthAction return; } - $this->init_document($this->format); + $this->initDocument($this->format); if (isset($this->ids_only)) { $this->showIds(); @@ -116,7 +116,7 @@ class ApiSubscriptionsAction extends ApiBareAuthAction $this->showProfiles(isset($this->lite) ? false : true); } - $this->end_document($this->format); + $this->endDocument($this->format); } /** @@ -204,7 +204,7 @@ class ApiSubscriptionsAction extends ApiBareAuthAction case 'xml': $this->elementStart('users', array('type' => 'array')); foreach ($this->profiles as $profile) { - $this->show_profile( + $this->showProfile( $profile, $this->format, null, @@ -216,7 +216,7 @@ class ApiSubscriptionsAction extends ApiBareAuthAction case 'json': $arrays = array(); foreach ($this->profiles as $profile) { - $arrays[] = $this->twitter_user_array( + $arrays[] = $this->twitterUserArray( $profile, $include_statuses ); |