for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace GNAHotelSolutions\ImageCacher\Adapters\Laravel\Facades;
use GNAHotelSolutions\ImageCacher\Cacher;
use Illuminate\Support\Facades\Facade;
/**
* @method static Image resize(string|Image $image, int|null $width, int|null $height)
* @method static Image crop(string|Image $image, int|null $width, int|null $height)
*
* @see \GNAHotelSolutions\ImageCacher\Cacher
*/
class ImageCacher extends Facade
{
public static function getFacadeAccessor()
return Cacher::class;
}