JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "MPResponse.php"

Full Path: /var/www/laravel_filter/vendor/mercadopago/dx-php/src/MercadoPago/Net/MPResponse.php
File size: 738 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace MercadoPago\Net;

/** MPResponse class. */
class MPResponse
{
    /**
     * MPResponse constructor.
     * @param int $status_code status code of the response.
     * @param array $content content of the response.
     */
    public function __construct(
        private int $status_code,
        private ?array $content
    ) {
    }

    /**
     * Get the status code of the response.
     * @return int status code of the response.
     */
    public function getStatusCode(): int
    {
        return $this->status_code;
    }

    /**
     * Get the content of the response.
     * @return array content of the response.
     */
    public function getContent(): array
    {
        return $this->content;
    }
}