for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Luilliarcec\LaravelImgur\Facades;
use Illuminate\Http\UploadedFile;
use Illuminate\Support\Facades\Facade;
use Luilliarcec\LaravelImgur\Exceptions\InvalidArgumentException;
use Luilliarcec\LaravelImgur\Support\LaravelImgur;
/**
* @method static void setHeaders(array $headers)
* @method static void setBody(array $headers)
* @method static LaravelImgur|InvalidArgumentException upload(string|UploadedFile $image)
* @method static bool remove(string $hash)
* @method static string|InvalidArgumentException thumbnails(string $url, string $size)
* @method static mixed getResponse()
* @method static mixed getId()
* @method static mixed getLink()
* @method static mixed getDeletehash()
* @method static mixed getType()
* @method static mixed getSize()
* @method static mixed getWidth()
* @method static mixed getHeight()
* @method static mixed getName()
* @see LaravelImgur
*/
class Imgur extends Facade
{
* Get the registered name of the component.
*
* @return string
protected static function getFacadeAccessor()
return 'LaravelImgur';
}