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
/
settings
/
setting
/
PhabricatorPolicyFavoritesSetting.php
blob
61fb870625bd52fb2d55248781b611787128ae79
1
<
?php
2
3
final class
PhabricatorPolicyFavoritesSetting
4
extends
PhabricatorInternalSetting
{
5
6
const
SETTINGKEY
=
'policy.favorites'
;
7
8
public function
getSettingName
() {
9
return
pht
(
'Policy Favorites'
);
10
}
11
12
public function
getSettingDefaultValue
() {
13
return array
();
14
}
15
16
}