Differential D14402 Diff 34804 src/applications/transactions/editfield/PhabricatorSpaceEditField.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/transactions/editfield/PhabricatorSpaceEditField.php
| <?php | <?php | ||||
| final class PhabricatorSpaceEditField | final class PhabricatorSpaceEditField | ||||
| extends PhabricatorEditField { | extends PhabricatorEditField { | ||||
| protected function newControl() { | protected function newControl() { | ||||
| // NOTE: This field doesn't do anything on its own, it just serves as a | // NOTE: This field doesn't do anything on its own, it just serves as a | ||||
| // companion to the associated View Policy field. | // companion to the associated View Policy field. | ||||
| return null; | return null; | ||||
| } | } | ||||
| public function getHTTPParameterType() { | protected function newHTTPParameterType() { | ||||
| return 'phid'; | return new AphrontPHIDHTTPParameterType(); | ||||
| } | } | ||||
| } | } | ||||