mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-24 06:20:56 +01:00
20 lines
441 B
PHP
20 lines
441 B
PHP
|
<?php
|
||
|
|
||
|
abstract class PhabricatorAuthConduitAPIMethod extends ConduitAPIMethod {
|
||
|
|
||
|
final public function getApplication() {
|
||
|
return PhabricatorApplication::getByClass(
|
||
|
'PhabricatorAuthApplication');
|
||
|
}
|
||
|
|
||
|
public function getMethodStatus() {
|
||
|
return self::METHOD_STATUS_UNSTABLE;
|
||
|
}
|
||
|
|
||
|
public function getMethodStatusDescription() {
|
||
|
return pht(
|
||
|
'These methods are recently introduced and subject to change.');
|
||
|
}
|
||
|
|
||
|
}
|