for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Arcanedev\LaravelApiHelper\Facades;
use Arcanedev\LaravelApiHelper\Contracts\Http\JsonResponse as JsonResponseContract;
use Illuminate\Support\Facades\Facade;
/**
* Class JsonResponse
*
* @package Arcanedev\LaravelApiHelper\Facades
* @author ARCANEDEV <[email protected]>
*/
class JsonResponse extends Facade
{
* Get the registered name of the component.
* @return string
protected static function getFacadeAccessor() { return JsonResponseContract::class; }
}