mirror of
https://github.com/Icinga/icingaweb2-module-reactbundle.git
synced 2025-10-23 16:34:13 +02:00
10 lines
101 B
PHP
10 lines
101 B
PHP
<?php
|
|
class PHP_Job
|
|
{
|
|
public function perform()
|
|
{
|
|
sleep(120);
|
|
fwrite(STDOUT, 'Hello!');
|
|
}
|
|
}
|
|
?>
|