Differential D15479 Diff 37312 src/applications/auth/tokentype/PhabricatorAuthTemporaryTokenType.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/auth/tokentype/PhabricatorAuthTemporaryTokenType.php
| <?php | <?php | ||||
| abstract class PhabricatorAuthTemporaryTokenType | abstract class PhabricatorAuthTemporaryTokenType | ||||
| extends Phobject { | extends Phobject { | ||||
| abstract public function getTokenTypeDisplayName(); | |||||
| abstract public function getTokenReadableTypeName( | abstract public function getTokenReadableTypeName( | ||||
| PhabricatorAuthTemporaryToken $token); | PhabricatorAuthTemporaryToken $token); | ||||
| public function isTokenRevocable(PhabricatorAuthTemporaryToken $token) { | public function isTokenRevocable(PhabricatorAuthTemporaryToken $token) { | ||||
| return false; | return false; | ||||
| } | } | ||||
| final public function getTokenTypeConstant() { | final public function getTokenTypeConstant() { | ||||
| Show All 11 Lines | |||||