Файл vendor/intervention/image/src/Interfaces/ModifierInterface.php Вес запакованого файла 217b (217 b) Вес распакованого файла: 417b (417 b) Метод сжатия: 8
<?php
declare(strict_types=1);
namespace Intervention\Image\Interfaces;
use Intervention\Image\Exceptions\RuntimeException;
interface ModifierInterface
{
/**
* Apply modifications of the current modifier to the given image
*
* @param ImageInterface $image
* @throws RuntimeException
* @return ImageInterface
*/
public function apply(ImageInterface $image): ImageInterface;
}