Changeset View
Changeset View
Standalone View
Standalone View
src/applications/conduit/method/ConduitAPI_conduit_ping_Method.php
| <?php | <?php | ||||
| /** | /** | ||||
| * @group conduit | * @group conduit | ||||
| */ | */ | ||||
| final class ConduitAPI_conduit_ping_Method extends ConduitAPIMethod { | final class ConduitAPI_conduit_ping_Method extends ConduitAPIMethod { | ||||
| public function shouldRequireAuthentication() { | public function shouldRequireAuthentication() { | ||||
| return false; | return false; | ||||
| } | } | ||||
| public function getMethodDescription() { | public function getMethodDescription() { | ||||
| return "Basic ping for monitoring or a health-check."; | return 'Basic ping for monitoring or a health-check.'; | ||||
| } | } | ||||
| public function defineParamTypes() { | public function defineParamTypes() { | ||||
| return array(); | return array(); | ||||
| } | } | ||||
| public function defineReturnType() { | public function defineReturnType() { | ||||
| return 'string'; | return 'string'; | ||||
| Show All 10 Lines | |||||