Untitled

Anonymous
plain_text
06/19/2023 1:51 PM
264 B
11
Indexable
<?php

class Response
{
    public function isOk(): bool
    {
        return true;
    }

    /**
     * @return mixed[]
     */
    public function json(): array
    {
        return [];
    }
}
Editor is loading...