Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/almanac/conduit/AlmanacServiceSearchConduitAPIMethod.php
12256 views
1
<?php
2
3
final class AlmanacServiceSearchConduitAPIMethod
4
extends PhabricatorSearchEngineAPIMethod {
5
6
public function getAPIMethodName() {
7
return 'almanac.service.search';
8
}
9
10
public function newSearchEngine() {
11
return new AlmanacServiceSearchEngine();
12
}
13
14
public function getMethodSummary() {
15
return pht('Read information about Almanac services.');
16
}
17
18
}
19
20