Differential D9431 Diff 22523 src/applications/auth/storage/PhabricatorAuthProviderConfigTransaction.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/auth/storage/PhabricatorAuthProviderConfigTransaction.php
| <?php | <?php | ||||
| final class PhabricatorAuthProviderConfigTransaction | final class PhabricatorAuthProviderConfigTransaction | ||||
| extends PhabricatorApplicationTransaction { | extends PhabricatorApplicationTransaction { | ||||
| const TYPE_ENABLE = 'config:enable'; | const TYPE_ENABLE = 'config:enable'; | ||||
| const TYPE_REGISTRATION = 'config:registration'; | const TYPE_REGISTRATION = 'config:registration'; | ||||
| const TYPE_LINK = 'config:link'; | const TYPE_LINK = 'config:link'; | ||||
| const TYPE_UNLINK = 'config:unlink'; | const TYPE_UNLINK = 'config:unlink'; | ||||
| const TYPE_TRUST_EMAILS = "config:trustEmails"; | const TYPE_TRUST_EMAILS = 'config:trustEmails'; | ||||
| const TYPE_PROPERTY = 'config:property'; | const TYPE_PROPERTY = 'config:property'; | ||||
| const PROPERTY_KEY = 'auth:property'; | const PROPERTY_KEY = 'auth:property'; | ||||
| private $provider; | private $provider; | ||||
| public function setProvider(PhabricatorAuthProvider $provider) { | public function setProvider(PhabricatorAuthProvider $provider) { | ||||
| $this->provider = $provider; | $this->provider = $provider; | ||||
| ▲ Show 20 Lines • Show All 136 Lines • Show Last 20 Lines | |||||