mirror of
https://github.com/idanoo/php-resque.git
synced 2024-11-22 16:25:14 +00:00
12 lines
153 B
PHP
12 lines
153 B
PHP
|
<?php
|
||
|
|
||
|
namespace Resque\Example;
|
||
|
|
||
|
class BadPHPJob
|
||
|
{
|
||
|
public function perform()
|
||
|
{
|
||
|
throw new \Exception('Unable to run this job!');
|
||
|
}
|
||
|
}
|