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 */ 10abstract class PhabricatorConfigSiteSource 11 extends PhabricatorConfigProxySource { 12 13 public function getPriority() { 14 return 1000.0; 15 } 16 17} 18 19