Файл: system/vendor/intervention/image/src/Intervention/Image/Facades/Image.php
Строк: 30
<?php
namespace InterventionImageFacades;
use IlluminateSupportFacadesFacade;
/**
* @method static InterventionImageImage make(mixed $data)
* @method static self configure(array $config)
* @method static InterventionImageImage canvas(int $width, int $height, mixed $background = null)
* @method static InterventionImageImage cache(Closure $callback, int $lifetime = null, boolean $returnObj = false)
*/
class Image extends Facade
{
protected static function getFacadeAccessor()
{
return 'image';
}
}