php-resque/demo/php_error_job.php

9 lines
94 B
PHP
Raw Normal View History

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