for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Swis\JsonApi\Client\Facades;
use Illuminate\Support\Facades\Facade;
use Swis\JsonApi\Client\Interfaces\ResponseParserInterface;
/**
* @method static \Swis\JsonApi\Client\Interfaces\DocumentInterface parse(\Psr\Http\Message\ResponseInterface $response)
*
* @see \Swis\JsonApi\Client\Interfaces\ResponseParserInterface
*/
class ResponseParserFacade extends Facade
{
* {@inheritdoc}
protected static function getFacadeAccessor()
return ResponseParserInterface::class;
}