mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 01:12:41 +01:00
18 lines
354 B
PHP
18 lines
354 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Optional configuration source which loads between local sources and the
|
||
|
* database source.
|
||
|
*
|
||
|
* Subclasses of this source can read external configuration sources (like a
|
||
|
* remote server).
|
||
|
*/
|
||
|
abstract class PhabricatorConfigSiteSource
|
||
|
extends PhabricatorConfigProxySource {
|
||
|
|
||
|
public function getPriority() {
|
||
|
return 1000.0;
|
||
|
}
|
||
|
|
||
|
}
|