Skip to content

Commit c52bcc8

Browse files
committed
Re-enable autoload for class_exists in Job.php
1 parent 599295e commit c52bcc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Resque/Job.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ public function getInstance()
142142
return $this->instance;
143143
}
144144

145-
if(!class_exists($this->payload['class'], false)) {
145+
if(!class_exists($this->payload['class'])) {
146146
throw new Resque_Exception(
147147
'Could not find job class ' . $this->payload['class'] . '.'
148148
);

0 commit comments

Comments
 (0)