| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class InvalidateCache implements ShouldQueue |
||
| 13 | { |
||
| 14 | use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; |
||
|
|
|||
| 15 | |||
| 16 | private $paths; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Create a new job instance. |
||
| 20 | * |
||
| 21 | * @param string|array $paths |
||
| 22 | */ |
||
| 23 | public function __construct($paths) |
||
| 24 | { |
||
| 25 | $this->paths = $paths; |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Execute the job. |
||
| 30 | * |
||
| 31 | * @return void |
||
| 32 | */ |
||
| 33 | public function handle() |
||
| 36 | } |
||
| 37 | } |
||
| 38 |