Changeset View
Changeset View
Standalone View
Standalone View
src/applications/auth/storage/PhabricatorAuthContactNumber.php
| <?php | <?php | ||||
| final class PhabricatorAuthContactNumber | final class PhabricatorAuthContactNumber | ||||
| extends PhabricatorAuthDAO | extends PhabricatorAuthDAO | ||||
| implements | implements | ||||
| PhabricatorApplicationTransactionInterface, | PhabricatorApplicationTransactionInterface, | ||||
| PhabricatorPolicyInterface, | PhabricatorPolicyInterface, | ||||
| PhabricatorDestructibleInterface { | PhabricatorDestructibleInterface, | ||||
| PhabricatorEditEngineMFAInterface { | |||||
| protected $objectPHID; | protected $objectPHID; | ||||
| protected $contactNumber; | protected $contactNumber; | ||||
| protected $uniqueKey; | protected $uniqueKey; | ||||
| protected $status; | protected $status; | ||||
| protected $isPrimary; | protected $isPrimary; | ||||
| protected $properties = array(); | protected $properties = array(); | ||||
| ▲ Show 20 Lines • Show All 209 Lines • ▼ Show 20 Lines | public function getApplicationTransactionEditor() { | ||||
| return new PhabricatorAuthContactNumberEditor(); | return new PhabricatorAuthContactNumberEditor(); | ||||
| } | } | ||||
| public function getApplicationTransactionTemplate() { | public function getApplicationTransactionTemplate() { | ||||
| return new PhabricatorAuthContactNumberTransaction(); | return new PhabricatorAuthContactNumberTransaction(); | ||||
| } | } | ||||
| /* -( PhabricatorEditEngineMFAInterface )---------------------------------- */ | |||||
| public function newEditEngineMFAEngine() { | |||||
| return new PhabricatorAuthContactNumberMFAEngine(); | |||||
| } | |||||
| } | } | ||||