php-resque/demo/php_error_job.php

9 lines
107 B
PHP
Raw Normal View History

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