1 | <?php |
||
8 | abstract class AbstractLib |
||
9 | { |
||
10 | protected $quality = 86; |
||
11 | protected $background = [255, 255, 255]; |
||
12 | protected $animated = false; |
||
13 | protected $progressive = false; |
||
14 | |||
15 | /** |
||
16 | * {@inheritdoc} |
||
17 | */ |
||
18 | public function setCompressionQuality($quality) |
||
22 | |||
23 | /** |
||
24 | * {@inheritdoc} |
||
25 | */ |
||
26 | public function setBackground(array $background) |
||
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | public function setAnimated($animated) |
||
38 | } |
||
39 |