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