byos_laravel/app/Services/Plugin/Parsers/ResponseParser.php
2025-12-09 21:07:48 +01:00

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;
}