mirror of
https://github.com/idanoo/php-resque.git
synced 2024-11-22 16:25:14 +00:00
Re-enable autoload for class_exists in Job.php
This commit is contained in:
parent
599295ef9c
commit
c52bcc8af7
@ -142,7 +142,7 @@ class Resque_Job
|
|||||||
return $this->instance;
|
return $this->instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!class_exists($this->payload['class'], false)) {
|
if(!class_exists($this->payload['class'])) {
|
||||||
throw new Resque_Exception(
|
throw new Resque_Exception(
|
||||||
'Could not find job class ' . $this->payload['class'] . '.'
|
'Could not find job class ' . $this->payload['class'] . '.'
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user