mirror of
https://github.com/idanoo/php-resque.git
synced 2024-11-22 08:15:14 +00:00
14 lines
186 B
PHP
14 lines
186 B
PHP
|
<?php
|
||
|
|
||
|
/** @noinspection PhpUndefinedFunctionInspection */
|
||
|
|
||
|
namespace Resque\Example;
|
||
|
|
||
|
class PHPErrorJob
|
||
|
{
|
||
|
public function perform()
|
||
|
{
|
||
|
callToUndefinedFunction();
|
||
|
}
|
||
|
}
|