mirror of
https://github.com/idanoo/php-resque
synced 2025-07-01 05:32:20 +00:00
Fixing a typo where args was not being set properly.
Fixing some typos in the README and added troubleshooting.
This commit is contained in:
parent
5f64653149
commit
f20ab2cac5
2 changed files with 15 additions and 4 deletions
|
@ -131,7 +131,7 @@ class Resque_Job
|
|||
}
|
||||
|
||||
$instance = new $this->payload['class'];
|
||||
$isntance->args = $this->payload['args'];
|
||||
$instance->args = $this->payload['args'];
|
||||
|
||||
if(method_exists($instance, 'setUp')) {
|
||||
$instance->setUp();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue