vendor and env first commit
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace Intervention\Image\Facades;
|
||||
|
||||
use Illuminate\Support\Facades\Facade;
|
||||
|
||||
/**
|
||||
* @method static \Intervention\Image\Image make(mixed $data)
|
||||
* @method static self configure(array $config)
|
||||
* @method static \Intervention\Image\Image canvas(int $width, int $height, mixed $background = null)
|
||||
* @method static \Intervention\Image\Image cache(\Closure $callback, int $lifetime = null, boolean $returnObj = false)
|
||||
*/
|
||||
class Image extends Facade
|
||||
{
|
||||
protected static function getFacadeAccessor()
|
||||
{
|
||||
return 'image';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user