mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-04 12:42:43 +01:00
19 lines
389 B
PHP
19 lines
389 B
PHP
|
<?php
|
||
|
|
||
|
final class HarbormasterBuildableSearchAPIMethod
|
||
|
extends PhabricatorSearchEngineAPIMethod {
|
||
|
|
||
|
public function getAPIMethodName() {
|
||
|
return 'harbormaster.buildable.search';
|
||
|
}
|
||
|
|
||
|
public function newSearchEngine() {
|
||
|
return new HarbormasterBuildableSearchEngine();
|
||
|
}
|
||
|
|
||
|
public function getMethodSummary() {
|
||
|
return pht('Find out information about buildables.');
|
||
|
}
|
||
|
|
||
|
}
|