💾 Archived View for code.lanterne.chilliet.eu › vendor › mcmic › gemini-server › src › Response.php captured on 2022-07-16 at 14:01:07.

View Raw

More Information

⬅️ Previous capture (2021-12-17)

-=-=-=-=-=-=-

<?php

declare(strict_types=1);

namespace MCMic\Gemini;

class Response
{
    public int $status;
    public string $meta;
    public ?string $body;

    /**
     * @throws \MCMic\Gemini\Exception
     */
    public function __construct(int $status, string $meta, ?string $body = null)
    {
        if (
            (($status < 20) || ($status >= 30)) &&
            ($body !== null)
        ) {
            throw new Exception('Response with status ' . $status . ' cannot have a body', 40);
        }

        $this->status   = $status;
        $this->meta     = $meta;
        $this->body     = $body;
    }

    public function __toString(): string
    {
        return $this->status . ' ' . $this->meta . "\r\n" . ($this->body ?? '');
    }
}