1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-31 09:31:53 +02:00

Add DecoderInterface implementation to AbstractDecoder

This commit is contained in:
Oliver Vogel
2022-05-22 10:55:06 +02:00
parent 4847f2c5fc
commit 3b8629c54e

View File

@@ -4,11 +4,12 @@ namespace Intervention\Image\Drivers\Abstract\Decoders;
use Intervention\Image\Exceptions\DecoderException;
use Intervention\Image\Interfaces\ColorInterface;
use Intervention\Image\Interfaces\DecoderInterface;
use Intervention\Image\Interfaces\ImageInterface;
use Intervention\MimeSniffer\MimeSniffer;
use Intervention\MimeSniffer\AbstractType;
abstract class AbstractDecoder
abstract class AbstractDecoder implements DecoderInterface
{
public function __construct(protected ?AbstractDecoder $successor = null)
{