1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-04 12:42:43 +01:00
phorge-phorge/src/applications/harbormaster/conduit/HarbormasterBuildableSearchAPIMethod.php

19 lines
389 B
PHP
Raw Normal View History

<?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.');
}
}