mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-14 19:22:14 +01:00
Fixed failed jobs table
This commit is contained in:
committed by
Constantin Graf
parent
4c2748ff50
commit
7fd5d25781
@@ -15,7 +15,7 @@ class TestJobCommand extends Command
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $signature = 'test:job';
|
||||
protected $signature = 'test:job {--fail}';
|
||||
|
||||
/**
|
||||
* The console command description.
|
||||
@@ -30,7 +30,9 @@ class TestJobCommand extends Command
|
||||
public function handle(): int
|
||||
{
|
||||
$user = User::firstOrFail();
|
||||
TestJob::dispatch($user, 'Test job message.');
|
||||
$fail = (bool) $this->option('fail');
|
||||
|
||||
TestJob::dispatch($user, 'Test job message.', $fail);
|
||||
|
||||
return self::SUCCESS;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user