Differential D20651 Diff 49266 src/applications/diffusion/conduit/DiffusionQueryConduitAPIMethod.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/diffusion/conduit/DiffusionQueryConduitAPIMethod.php
| <?php | <?php | ||||
| abstract class DiffusionQueryConduitAPIMethod | abstract class DiffusionQueryConduitAPIMethod | ||||
| extends DiffusionConduitAPIMethod { | extends DiffusionConduitAPIMethod { | ||||
| public function shouldAllowPublic() { | public function shouldAllowPublic() { | ||||
| return true; | return true; | ||||
| } | } | ||||
| public function getMethodStatus() { | |||||
| return self::METHOD_STATUS_UNSTABLE; | |||||
| } | |||||
| public function getMethodStatusDescription() { | |||||
| return pht( | |||||
| 'See T2784 - migrating Diffusion working copy calls to conduit methods. '. | |||||
| 'Until that task is completed (and possibly after) these methods are '. | |||||
| 'unstable.'); | |||||
| } | |||||
| private $diffusionRequest; | private $diffusionRequest; | ||||
| private $repository; | private $repository; | ||||
| protected function setDiffusionRequest(DiffusionRequest $request) { | protected function setDiffusionRequest(DiffusionRequest $request) { | ||||
| $this->diffusionRequest = $request; | $this->diffusionRequest = $request; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 154 Lines • Show Last 20 Lines | |||||