<?php
namespace Lucent;
use Intervention\Image\Interfaces\ModifierInterface;
interface ImageFilterInterface extends ModifierInterface
{
public function getName(): string;
public function getPath(): string;
}