Page MenuHomec4science

PhutilNiceDaemon.php
No OneTemporary

File Metadata

Created
Thu, Jul 11, 04:52

PhutilNiceDaemon.php

<?php
/**
* Daemon which behaves properly.
*/
final class PhutilNiceDaemon extends PhutilTortureTestDaemon {
protected function run() {
while (true) {
$this->log(date('r'));
$this->stillWorking();
sleep(1);
}
}
}

Event Timeline