Differential D14634 Diff 35411 src/infrastructure/customfield/standard/PhabricatorStandardCustomFieldUsers.php
Changeset View
Changeset View
Standalone View
Standalone View
src/infrastructure/customfield/standard/PhabricatorStandardCustomFieldUsers.php
| <?php | <?php | ||||
| final class PhabricatorStandardCustomFieldUsers | final class PhabricatorStandardCustomFieldUsers | ||||
| extends PhabricatorStandardCustomFieldTokenizer { | extends PhabricatorStandardCustomFieldTokenizer { | ||||
| public function getFieldType() { | public function getFieldType() { | ||||
| return 'users'; | return 'users'; | ||||
| } | } | ||||
| public function getDatasource() { | public function getDatasource() { | ||||
| return new PhabricatorPeopleDatasource(); | return new PhabricatorPeopleDatasource(); | ||||
| } | } | ||||
| protected function getHTTPParameterType() { | |||||
| return new AphrontUserListHTTPParameterType(); | |||||
| } | |||||
| } | } | ||||