Changeset View
Changeset View
Standalone View
Standalone View
src/applications/chatlog/conduit/ConduitAPI_chatlog_query_Method.php
| <?php | <?php | ||||
| /** | /** | ||||
| * @group conduit | * @group conduit | ||||
| */ | */ | ||||
| final class ConduitAPI_chatlog_query_Method | final class ConduitAPI_chatlog_query_Method | ||||
| extends ConduitAPI_chatlog_Method { | extends ConduitAPI_chatlog_Method { | ||||
| public function getMethodStatus() { | public function getMethodStatus() { | ||||
| return self::METHOD_STATUS_UNSTABLE; | return self::METHOD_STATUS_UNSTABLE; | ||||
| } | } | ||||
| public function getMethodDescription() { | public function getMethodDescription() { | ||||
| return "Retrieve chatter."; | return 'Retrieve chatter.'; | ||||
| } | } | ||||
| public function defineParamTypes() { | public function defineParamTypes() { | ||||
| return array( | return array( | ||||
| 'channels' => 'optional list<string>', | 'channels' => 'optional list<string>', | ||||
| 'limit' => 'optional int (default = 100)', | 'limit' => 'optional int (default = 100)', | ||||
| ); | ); | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 42 Lines • Show Last 20 Lines | |||||