mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 02:12:41 +01:00
11 lines
217 B
PHP
11 lines
217 B
PHP
|
<?php
|
||
|
|
||
|
abstract class PassphraseConduitAPIMethod extends ConduitAPIMethod {
|
||
|
|
||
|
final public function getApplication() {
|
||
|
return PhabricatorApplication::getByClass(
|
||
|
'PhabricatorPassphraseApplication');
|
||
|
}
|
||
|
|
||
|
}
|