KamranAhmed\Smasher\JsonResponse::decode PHP Метод

decode() публичный Метод

Decodes the passed string and creates array from it
public decode ( string $response ) : array
$response string The existing response which is to be decoded to array
Результат array
    public function decode($response)
    {
        return json_decode($response, true);
    }
JsonResponse