Total Complexity | 4 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class ImageFactory |
||
10 | { |
||
11 | /** |
||
12 | * The image driver. |
||
13 | * |
||
14 | * @var string |
||
15 | */ |
||
16 | protected string $driver = 'gd'; |
||
17 | |||
18 | protected array $config; |
||
19 | |||
20 | public function __invoke(array $config = null) |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * |
||
35 | * @return ImageManager |
||
36 | */ |
||
37 | public function getImageManager(string $driver = null) |
||
49 |