mirror of
https://github.com/usetrmnl/byos_laravel.git
synced 2026-01-13 15:07:49 +00:00
15 lines
315 B
PHP
15 lines
315 B
PHP
<?php
|
|
|
|
namespace App\Services\Plugin\Parsers;
|
|
|
|
use Illuminate\Http\Client\Response;
|
|
|
|
interface ResponseParser
|
|
{
|
|
/**
|
|
* Attempt to parse the given response.
|
|
*
|
|
* Return null when the parser is not applicable so other parsers can run.
|
|
*/
|
|
public function parse(Response $response): ?array;
|
|
}
|