<?php
declare(strict_types=1);
namespace InterventionImageDrivers;
use InterventionImageInterfacesImageInterface;
use InterventionImageInterfacesModifierInterface;
abstract class SpecializableModifier extends Specializable implements ModifierInterface
{
/**
* {@inheritdoc}
*
* @see ModifierInterface::apply()
*/
public function apply(ImageInterface $image): ImageInterface
{
return $image->modify($this);
}
}