1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-11 09:22:40 +01:00
phorge-phorge/src/applications/maniphest/conduit/ManiphestFindConduitAPIMethod.php

26 lines
482 B
PHP
Raw Normal View History

<?php
/**
* @concrete-extensible
*/
final class ManiphestFindConduitAPIMethod
extends ManiphestQueryConduitAPIMethod {
public function getAPIMethodName() {
return 'maniphest.find';
}
public function getMethodStatus() {
return self::METHOD_STATUS_DEPRECATED;
}
public function getMethodStatusDescription() {
return "Renamed to 'maniphest.query'.";
}
public function getMethodDescription() {
return 'Deprecated alias of maniphest.query';
}
}