mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-01 19:22:42 +01:00
19 lines
373 B
PHP
19 lines
373 B
PHP
|
<?php
|
||
|
|
||
|
final class AlmanacDeviceSearchConduitAPIMethod
|
||
|
extends PhabricatorSearchEngineAPIMethod {
|
||
|
|
||
|
public function getAPIMethodName() {
|
||
|
return 'almanac.device.search';
|
||
|
}
|
||
|
|
||
|
public function newSearchEngine() {
|
||
|
return new AlmanacDeviceSearchEngine();
|
||
|
}
|
||
|
|
||
|
public function getMethodSummary() {
|
||
|
return pht('Read information about Almanac devices.');
|
||
|
}
|
||
|
|
||
|
}
|