php-resque/demo/php_error_job.php

8 lines
91 B
PHP
Raw Normal View History

2010-04-18 13:58:43 +00:00
<?php
class PHP_Error_Job
{
public function perform()
{
callToUndefinedFunction();
}
2013-03-13 11:41:32 +00:00
}