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 Aphlict websocket URI construction after PHP8 compatibility changes
[phabricator.git]
/
src
/
applications
/
repository
/
search
/
DiffusionCommitFerretEngine.php
blob
a6c5ce42c86f6ebccc7b4d7251d28709966a9e4e
1
<
?php
2
3
final class
DiffusionCommitFerretEngine
4
extends
PhabricatorFerretEngine
{
5
6
public function
getApplicationName
() {
7
return
'repository'
;
8
}
9
10
public function
getScopeName
() {
11
return
'commit'
;
12
}
13
14
public function
newSearchEngine
() {
15
return new
PhabricatorCommitSearchEngine
();
16
}
17
18
}