Page MenuHomec4science

PhutilNiceDaemon.php
No OneTemporary

File Metadata

Created
Fri, Jan 3, 06:10

PhutilNiceDaemon.php

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

Event Timeline