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
/
search
/
storage
/
PhabricatorSearchSchemaSpec.php
blob
278b199b5a41d8f66b18f85d16b32d46f65307e5
1
<
?php
2
3
final class
PhabricatorSearchSchemaSpec
4
extends
PhabricatorConfigSchemaSpec
{
5
6
public function
buildSchemata
() {
7
$this
->
buildEdgeSchemata
(
new
PhabricatorProfileMenuItemConfiguration
());
8
9
$this
->
buildRawSchema
(
10
'search'
,
11
PhabricatorSearchDocument
::
STOPWORDS_TABLE
,
12
array
(
13
'value'
=>
'sort32'
,
14
),
15
array
());
16
}
17
18
}