repo.or.cz
/
phabricator.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Correct a parameter order swap in "diffusion.historyquery" for Mercurial
[phabricator.git]
/
src
/
applications
/
ponder
/
search
/
PonderQuestionFerretEngine.php
blob
72345f60c06733a4a625bc4268a58df3fe20148e
1
<
?php
2
3
final class
PonderQuestionFerretEngine
4
extends
PhabricatorFerretEngine
{
5
6
public function
getApplicationName
() {
7
return
'ponder'
;
8
}
9
10
public function
getScopeName
() {
11
return
'question'
;
12
}
13
14
public function
newSearchEngine
() {
15
return new
PonderQuestionSearchEngine
();
16
}
17
18
}