Untitled

 avatar
unknown
plain_text
2 years ago
196 B
3
Indexable
<?php

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

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