1
0
mirror of https://github.com/Intervention/image.git synced 2025-09-02 10:23:29 +02:00

Merge pull request #940 from TullariS/patch-1

PHPDoc static methods for Facade
This commit is contained in:
Oliver Vogel
2019-05-30 09:27:37 +02:00
committed by GitHub

View File

@@ -4,6 +4,12 @@ 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()