<?php
declare(strict_types=1);
namespace InterventionGifEncoders;
abstract class AbstractEncoder
{
/**
* Encode current entity.
*/
abstract public function encode(): string;
/**
* Create new instance.
*/
public function __construct(protected mixed $entity)
{
//
}
}