php-resque/examples/PHPErrorJob.php

14 lines
186 B
PHP
Raw Normal View History

<?php
/** @noinspection PhpUndefinedFunctionInspection */
namespace Resque\Example;
class PHPErrorJob
{
public function perform()
{
callToUndefinedFunction();
}
}