Changeset View
Changeset View
Standalone View
Standalone View
src/applications/chatlog/conduit/ConduitAPI_chatlog_record_Method.php
| <?php | <?php | ||||
| /** | /** | ||||
| * @group conduit | * @group conduit | ||||
| */ | */ | ||||
| final class ConduitAPI_chatlog_record_Method | final class ConduitAPI_chatlog_record_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 "Record chatter."; | return 'Record chatter.'; | ||||
| } | } | ||||
| public function defineParamTypes() { | public function defineParamTypes() { | ||||
| return array( | return array( | ||||
| 'logs' => 'required list<dict>', | 'logs' => 'required list<dict>', | ||||
| ); | ); | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 55 Lines • Show Last 20 Lines | |||||