Skip to content

Commit bb89cb1

Browse files
committed
refactor: Update DummyJob to extend Action
1 parent 6f9a94a commit bb89cb1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/Helpers/DummyJob.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@
77
use Illuminate\Foundation\Bus\Dispatchable;
88
use Illuminate\Queue\InteractsWithQueue;
99
use Illuminate\Queue\SerializesModels;
10+
use Safemood\Workflow\Action;
1011

11-
class DummyJob implements ShouldQueue
12+
class DummyJob extends Action implements ShouldQueue
1213
{
1314
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
1415

@@ -23,5 +24,5 @@ public function __construct()
2324
/**
2425
* Execute the job.
2526
*/
26-
public function handle(): void {}
27+
public function handle(array &$context): void {}
2728
}

0 commit comments

Comments
 (0)