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
/
files
/
storage
/
PhabricatorFileNameNgrams.php
blob
6e97e8f0e48ed4e1b01186e0c58929e923acc6e6
1
<
?php
2
3
final class
PhabricatorFileNameNgrams
4
extends
PhabricatorSearchNgrams
{
5
6
public function
getNgramKey
() {
7
return
'filename'
;
8
}
9
10
public function
getColumnName
() {
11
return
'name'
;
12
}
13
14
public function
getApplicationName
() {
15
return
'file'
;
16
}
17
18
}