for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Siak\Tontine\Service\Report\Pdf;
use Illuminate\Support\Facades\Facade;
/**
* @method static string getPdf(string $html, array $config)
*/
class GeneratorFacade extends Facade
{
protected static function getFacadeAccessor()
return GeneratorInterface::class;
}