Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/auth/conduit/PhabricatorAuthConduitAPIMethod.php
12256 views
1
<?php
2
3
abstract class PhabricatorAuthConduitAPIMethod extends ConduitAPIMethod {
4
5
final public function getApplication() {
6
return PhabricatorApplication::getByClass('PhabricatorAuthApplication');
7
}
8
9
public function getMethodStatus() {
10
return self::METHOD_STATUS_UNSTABLE;
11
}
12
13
public function getMethodStatusDescription() {
14
return pht('These methods are recently introduced and subject to change.');
15
}
16
17
}
18
19