Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
painelbistroemcasa.meumercado.app
/
vendor
/
kreait
/
firebase-php
/
src
/
Firebase
/
Http
/
Editing: ErrorResponseParser.php
<?php declare(strict_types=1); namespace Kreait\Firebase\Http; use InvalidArgumentException; use Kreait\Firebase\Util\JSON; use Psr\Http\Message\ResponseInterface; final class ErrorResponseParser { public function getErrorReasonFromResponse(ResponseInterface $response): string { $responseBody = (string) $response->getBody(); try { $data = JSON::decode($responseBody, true); } catch (InvalidArgumentException $e) { return $responseBody; } if (\is_string($data['error']['message'] ?? null)) { return $data['error']['message']; } if (\is_string($data['error'] ?? null)) { return $data['error']; } return $responseBody; } /** * @return array<mixed> */ public function getErrorsFromResponse(ResponseInterface $response): array { try { return JSON::decode((string) $response->getBody(), true); } catch (InvalidArgumentException $e) { return []; } } }
Save
Cancel