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