| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 10 | class ImagineDriver implements DriverInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var Imagine $imagine |
||
| 14 | */ |
||
| 15 | protected $imagine; |
||
| 16 | |||
| 17 | public function __construct() |
||
| 18 | { |
||
| 19 | $this->imagine = new Imagine(); |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @inheritDoc |
||
| 24 | */ |
||
| 25 | public function process(string $path, int $width, int $height, string $resizedFile): void |
||
| 31 | } |
||
| 32 | } |
||
| 33 |