| 1 | <?php declare(strict_types=1); |
||
| 5 | final class Error |
||
| 6 | { |
||
| 7 | /** @var string */ |
||
| 8 | private $in; |
||
| 9 | |||
| 10 | /** @var int */ |
||
| 11 | private $code; |
||
| 12 | |||
| 13 | /** @var string */ |
||
| 14 | private $message; |
||
| 15 | |||
| 16 | |||
| 17 | public function __construct(string $in, int $code, string $message) |
||
| 23 | |||
| 24 | |||
| 25 | public function getCode(): int |
||
| 29 | |||
| 30 | |||
| 31 | public function getMessage(): string |
||
| 35 | |||
| 36 | |||
| 37 | public function getIn(): string |
||
| 41 | |||
| 42 | |||
| 43 | public function toArray(): array |
||
| 51 | |||
| 52 | } |
||
| 53 |