Changeset View
Changeset View
Standalone View
Standalone View
src/applications/auth/phid/PhabricatorAuthMessagePHIDType.php
- This file was added.
| <?php | |||||
| final class PhabricatorAuthMessagePHIDType extends PhabricatorPHIDType { | |||||
| const TYPECONST = 'AMSG'; | |||||
| public function getTypeName() { | |||||
| return pht('Auth Message'); | |||||
| } | |||||
| public function newObject() { | |||||
| return new PhabricatorAuthMessage(); | |||||
| } | |||||
| public function getPHIDTypeApplicationClass() { | |||||
| return 'PhabricatorAuthApplication'; | |||||
| } | |||||
| protected function buildQueryForObjects( | |||||
| PhabricatorObjectQuery $query, | |||||
| array $phids) { | |||||
| return new PhabricatorAuthMessageQuery(); | |||||
| } | |||||
| public function loadHandles( | |||||
| PhabricatorHandleQuery $query, | |||||
| array $handles, | |||||
| array $objects) { | |||||
| return; | |||||
| } | |||||
| } | |||||