Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/infrastructure/env/PhabricatorConfigSiteSource.php
12241 views
1
<?php
2
3
/**
4
* Optional configuration source which loads between local sources and the
5
* database source.
6
*
7
* Subclasses of this source can read external configuration sources (like a
8
* remote server).
9
*/
10
abstract class PhabricatorConfigSiteSource
11
extends PhabricatorConfigProxySource {
12
13
public function getPriority() {
14
return 1000.0;
15
}
16
17
}
18
19