@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
at upstream/main 17 lines 354 B view raw
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}