diff --git a/src/applications/fact/daemon/PhabricatorFactDaemon.php b/src/applications/fact/daemon/PhabricatorFactDaemon.php --- a/src/applications/fact/daemon/PhabricatorFactDaemon.php +++ b/src/applications/fact/daemon/PhabricatorFactDaemon.php @@ -6,7 +6,7 @@ const RAW_FACT_BUFFER_LIMIT = 128; - public function run() { + protected function run() { $this->setEngines(PhabricatorFactEngine::loadAllEngines()); while (!$this->shouldExit()) { $iterators = $this->getAllApplicationIterators(); diff --git a/src/applications/repository/daemon/PhabricatorRepositoryPullLocalDaemon.php b/src/applications/repository/daemon/PhabricatorRepositoryPullLocalDaemon.php --- a/src/applications/repository/daemon/PhabricatorRepositoryPullLocalDaemon.php +++ b/src/applications/repository/daemon/PhabricatorRepositoryPullLocalDaemon.php @@ -34,7 +34,7 @@ /** * @task pull */ - public function run() { + protected function run() { $argv = $this->getArgv(); array_unshift($argv, __CLASS__); $args = new PhutilArgumentParser($argv); diff --git a/src/infrastructure/daemon/bot/PhabricatorBot.php b/src/infrastructure/daemon/bot/PhabricatorBot.php --- a/src/infrastructure/daemon/bot/PhabricatorBot.php +++ b/src/infrastructure/daemon/bot/PhabricatorBot.php @@ -16,7 +16,7 @@ private $config; private $pollFrequency; - public function run() { + protected function run() { $argv = $this->getArgv(); if (count($argv) !== 1) { throw new Exception('usage: PhabricatorBot '); diff --git a/src/infrastructure/daemon/garbagecollector/PhabricatorGarbageCollectorDaemon.php b/src/infrastructure/daemon/garbagecollector/PhabricatorGarbageCollectorDaemon.php --- a/src/infrastructure/daemon/garbagecollector/PhabricatorGarbageCollectorDaemon.php +++ b/src/infrastructure/daemon/garbagecollector/PhabricatorGarbageCollectorDaemon.php @@ -6,7 +6,7 @@ */ final class PhabricatorGarbageCollectorDaemon extends PhabricatorDaemon { - public function run() { + protected function run() { $collectors = id(new PhutilSymbolLoader()) ->setAncestorClass('PhabricatorGarbageCollector') ->loadObjects(); diff --git a/src/infrastructure/daemon/workers/PhabricatorTaskmasterDaemon.php b/src/infrastructure/daemon/workers/PhabricatorTaskmasterDaemon.php --- a/src/infrastructure/daemon/workers/PhabricatorTaskmasterDaemon.php +++ b/src/infrastructure/daemon/workers/PhabricatorTaskmasterDaemon.php @@ -2,7 +2,7 @@ final class PhabricatorTaskmasterDaemon extends PhabricatorDaemon { - public function run() { + protected function run() { $sleep = 0; do { $tasks = id(new PhabricatorWorkerLeaseQuery())