mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-21 04:01:30 +01:00
21 lines
456 B
PHP
21 lines
456 B
PHP
|
<?php
|
||
|
|
||
|
abstract class AlmanacConduitAPIMethod extends ConduitAPIMethod {
|
||
|
|
||
|
final public function getApplication() {
|
||
|
return PhabricatorApplication::getByClass(
|
||
|
'PhabricatorAlmanacApplication');
|
||
|
}
|
||
|
|
||
|
public function getMethodStatus() {
|
||
|
return self::METHOD_STATUS_UNSTABLE;
|
||
|
}
|
||
|
|
||
|
public function getMethodStatusDescription() {
|
||
|
return pht(
|
||
|
'Almanac is a prototype application and its APIs are '.
|
||
|
'subject to change.');
|
||
|
}
|
||
|
|
||
|
}
|