Page MenuHomePhabricator
Paste P1886

PhabricatorDebugDaemon.php
ActivePublic

Authored by joshuaspence on Nov 10 2015, 7:51 PM.
Referenced Files
F959613: PhabricatorDebugDaemon.php
Feb 24 2016, 1:31 AM
Subscribers
None
<?php
final class PhabricatorDebugDaemon extends PhabricatorDaemon {
protected function run() {
do {
PhabricatorCaches::destroyRequestCache();
echo PhabricatorEnv::calculateEnvironmentHash();
$this->sleep(1);
} while (!$this->shouldExit());
}
}