for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Abordage\LaravelHtmlMin\Facades;
use Illuminate\Support\Facades\Facade;
/**
* @method static \Abordage\LaravelHtmlMin\HtmlMin minify(string $html)
*
* @see \Abordage\LaravelHtmlMin\HtmlMin
*/
class HtmlMin extends Facade
{
protected static function getFacadeAccessor(): string
return 'laravel-html-min';
}