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