mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-04 04:32:43 +01:00
19 lines
388 B
PHP
19 lines
388 B
PHP
|
<?php
|
||
|
|
||
|
final class DifferentialRevisionSearchConduitAPIMethod
|
||
|
extends PhabricatorSearchEngineAPIMethod {
|
||
|
|
||
|
public function getAPIMethodName() {
|
||
|
return 'differential.revision.search';
|
||
|
}
|
||
|
|
||
|
public function newSearchEngine() {
|
||
|
return new DifferentialRevisionSearchEngine();
|
||
|
}
|
||
|
|
||
|
public function getMethodSummary() {
|
||
|
return pht('Read information about revisions.');
|
||
|
}
|
||
|
|
||
|
}
|