Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class RemoveUserMenuCache implements ShouldQueue |
||
14 | { |
||
15 | use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; |
||
|
|||
16 | |||
17 | protected $user; |
||
18 | |||
19 | /** |
||
20 | * Create a new job instance. |
||
21 | * |
||
22 | * @param MenuUser $user |
||
23 | * @return void |
||
24 | */ |
||
25 | public function __construct($user) |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * Execute the job. |
||
32 | * |
||
33 | * @return void |
||
34 | */ |
||
35 | public function handle() |
||
42 |