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