mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-19 03:50:54 +01:00
19 lines
309 B
PHP
19 lines
309 B
PHP
|
<?php
|
||
|
|
||
|
final class DiffusionCommitFerretEngine
|
||
|
extends PhabricatorFerretEngine {
|
||
|
|
||
|
public function getApplicationName() {
|
||
|
return 'repository';
|
||
|
}
|
||
|
|
||
|
public function getScopeName() {
|
||
|
return 'commit';
|
||
|
}
|
||
|
|
||
|
public function newSearchEngine() {
|
||
|
return new PhabricatorCommitSearchEngine();
|
||
|
}
|
||
|
|
||
|
}
|