Total Complexity | 1 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
10 | abstract class AbstractImageAdapter extends BaseObject implements IFormatAdapter |
||
11 | { |
||
12 | /** |
||
13 | * @see ImagineFactory::get() |
||
14 | * @var string |
||
15 | */ |
||
16 | public $driver = ImagineFactory::DEFAULT_DRIVER; |
||
17 | |||
18 | /** |
||
19 | * @var ImagineInterface |
||
20 | */ |
||
21 | protected $imagine; |
||
22 | |||
23 | /** |
||
24 | * @inheritdoc |
||
25 | * @throws \Imagine\Exception\RuntimeException |
||
26 | * @throws \tkanstantsin\fileupload\config\InvalidConfigException |
||
27 | */ |
||
28 | public function init(): void |
||
35 | } |