1 | <?php |
||
18 | abstract class AbstractImage implements ImageInterface |
||
19 | { |
||
20 | /** |
||
21 | * @var array |
||
22 | */ |
||
23 | protected static $supportedFormats = [ |
||
24 | 'GIF', |
||
25 | 'JPEG', |
||
26 | 'PNG', |
||
27 | 'TIFF', |
||
28 | ]; |
||
29 | |||
30 | /** |
||
31 | * {@inheritdoc} |
||
32 | */ |
||
33 | public function getPalette() |
||
54 | |||
55 | /** |
||
56 | * {@inheritdoc} |
||
57 | */ |
||
58 | public function withPalette(PaletteInterface $palette) |
||
76 | } |
||
77 |