mirror of
https://github.com/idanoo/php-resque.git
synced 2024-11-22 16:25:14 +00:00
10 lines
152 B
PHP
10 lines
152 B
PHP
<?php
|
|
class PHP_Job
|
|
{
|
|
public function perform()
|
|
{
|
|
fwrite(STDOUT, 'Start job! -> ');
|
|
sleep(1);
|
|
fwrite(STDOUT, 'Job ended!' . PHP_EOL);
|
|
}
|
|
} |