mirror of
https://github.com/idanoo/php-resque.git
synced 2024-11-22 00:11:53 +00:00
10 lines
101 B
PHP
10 lines
101 B
PHP
<?php
|
|
class PHP_Job
|
|
{
|
|
public function perform()
|
|
{
|
|
sleep(120);
|
|
fwrite(STDOUT, 'Hello!');
|
|
}
|
|
}
|
|
?>
|