mirror of
https://github.com/idanoo/php-resque
synced 2025-07-01 05:32:20 +00:00
Re-enable autoload for class_exists in Job.php
This commit is contained in:
parent
599295ef9c
commit
c52bcc8af7
1 changed files with 1 additions and 1 deletions
|
@ -142,7 +142,7 @@ class Resque_Job
|
|||
return $this->instance;
|
||||
}
|
||||
|
||||
if(!class_exists($this->payload['class'], false)) {
|
||||
if(!class_exists($this->payload['class'])) {
|
||||
throw new Resque_Exception(
|
||||
'Could not find job class ' . $this->payload['class'] . '.'
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue