1 | <?php |
||
10 | final class Message extends AbstractMeta |
||
11 | { |
||
12 | 4 | public function __construct(string $message, int $httpStatusCode) |
|
16 | |||
17 | 1 | public static function ok(string $message = 'OK'): self |
|
21 | |||
22 | 1 | public static function created(string $message = 'Created'): self |
|
26 | |||
27 | 1 | public static function accepted(string $message = 'Accepted'): self |
|
31 | |||
32 | 1 | public static function noContent(string $message = 'No Content'): self |
|
36 | } |
||
37 |