Total Complexity | 2 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class ProcessImage implements ShouldQueue |
||
10 | { |
||
11 | /** |
||
12 | * @var ImageManager |
||
13 | */ |
||
14 | private $imageManager; |
||
15 | |||
16 | /** |
||
17 | * Create the event listener. |
||
18 | * |
||
19 | * @param ImageManager $imageManager |
||
20 | */ |
||
21 | public function __construct(ImageManager $imageManager) |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * Handle the event. |
||
28 | * |
||
29 | * @param ImageSaved $event |
||
30 | * @return void |
||
31 | */ |
||
32 | public function handle(ImageSaved $event) |
||
48 |