mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-03 20:22:46 +01:00
19 lines
388 B
PHP
19 lines
388 B
PHP
|
<?php
|
||
|
|
||
|
final class HarbormasterBuildLogSearchConduitAPIMethod
|
||
|
extends PhabricatorSearchEngineAPIMethod {
|
||
|
|
||
|
public function getAPIMethodName() {
|
||
|
return 'harbormaster.log.search';
|
||
|
}
|
||
|
|
||
|
public function newSearchEngine() {
|
||
|
return new HarbormasterBuildLogSearchEngine();
|
||
|
}
|
||
|
|
||
|
public function getMethodSummary() {
|
||
|
return pht('Find out information about build logs.');
|
||
|
}
|
||
|
|
||
|
}
|