mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-23 13:08:18 +01:00
19 lines
288 B
PHP
19 lines
288 B
PHP
|
<?php
|
||
|
|
||
|
final class PhamePostFerretEngine
|
||
|
extends PhabricatorFerretEngine {
|
||
|
|
||
|
public function getApplicationName() {
|
||
|
return 'phame';
|
||
|
}
|
||
|
|
||
|
public function getScopeName() {
|
||
|
return 'post';
|
||
|
}
|
||
|
|
||
|
public function newSearchEngine() {
|
||
|
return new PhamePostSearchEngine();
|
||
|
}
|
||
|
|
||
|
}
|