-
Notifications
You must be signed in to change notification settings - Fork 749
Open
Description
\Resque::setBackend('redis:6379'); \Resque::enqueue('convert','App\\Job',['foobar' => 'bar']);
this is how i setup my job
`namespace App;
use App\Service\Log;
class Job
{
public function perform()
{
// .. Run job
$a = new Log();
$a->info('yellow',['done']);
dd('ad');
}
}`
My job file
"autoload": { "psr-4": { "App\\": "app" }, "files": [ "app/Job.php",
my composer
Job{convert} | ID: 9fae4414fd91f0d01598298ba87e3211 | App\Job | [{"foobar":"bar"}]) failed: Could not find job class App\Job.
Issue i got
Metadata
Metadata
Assignees
Labels
No labels