1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-23 13:08:18 +01:00
phorge-phorge/src/applications/phame/search/PhamePostFerretEngine.php

19 lines
288 B
PHP
Raw Normal View History

<?php
final class PhamePostFerretEngine
extends PhabricatorFerretEngine {
public function getApplicationName() {
return 'phame';
}
public function getScopeName() {
return 'post';
}
public function newSearchEngine() {
return new PhamePostSearchEngine();
}
}