| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class TestJob implements ShouldQueue |
||
| 10 | { |
||
| 11 | use Queueable; |
||
| 12 | use SerializesModels; |
||
|
|
|||
| 13 | |||
| 14 | private $model; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Create a new job instance. |
||
| 18 | */ |
||
| 19 | public function __construct(TestUser $testUser) |
||
| 20 | { |
||
| 21 | $this->model = $testUser; |
||
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Execute the job. |
||
| 26 | */ |
||
| 27 | public function handle() |
||
| 30 | } |
||
| 31 | } |
||
| 32 |