Файл: vendor/laravel/framework/src/Illuminate/Contracts/Image/Driver.php
Строк: 36
<?php
namespace IlluminateContractsImage;
use IlluminateImageImagePipeline;
interface Driver
{
/**
* Process the given image contents with the specified pipeline.
*/
public function process(string $contents, ImagePipeline $pipeline): string;
/**
* Register a transformation handler.
*
* @param class-string<IlluminateContractsImageTransformation> $transformation
*/
public function transformUsing(string $transformation, callable $callback): static;
}