mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 11:22:40 +01:00
19 lines
372 B
PHP
19 lines
372 B
PHP
|
<?php
|
||
|
|
||
|
final class DifferentialDiffSearchConduitAPIMethod
|
||
|
extends PhabricatorSearchEngineAPIMethod {
|
||
|
|
||
|
public function getAPIMethodName() {
|
||
|
return 'differential.diff.search';
|
||
|
}
|
||
|
|
||
|
public function newSearchEngine() {
|
||
|
return new DifferentialDiffSearchEngine();
|
||
|
}
|
||
|
|
||
|
public function getMethodSummary() {
|
||
|
return pht('Read information about diffs.');
|
||
|
}
|
||
|
|
||
|
}
|