for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Flugg\Responder\Facades;
use Flugg\Responder\Contracts\Responder as ResponderContract;
use Illuminate\Support\Facades\Facade;
/**
* An optional facade you can register to quickly access the responder service.
*
* @package Laravel Responder
* @author Alexander Tømmerås <[email protected]>
* @license The MIT License
*/
class Responder extends Facade
{
* Get the registered name of the component.
* @return string
protected static function getFacadeAccessor()
return ResponderContract::class;
}