| 1 | <?php |
||
| 9 | final class RequestUriTooLong extends AbstractApiProblem |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var int |
||
| 13 | */ |
||
| 14 | private $maxUriLength; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param int $maxUriLength |
||
| 18 | * @param string|null $detail |
||
| 19 | * @param string|null $instance |
||
| 20 | */ |
||
| 21 | 2 | public function __construct(int $maxUriLength, string $detail = null, string $instance = null) |
|
| 33 | |||
| 34 | /** |
||
| 35 | * @return int |
||
| 36 | */ |
||
| 37 | 2 | public function getMaxUriLength(): int |
|
| 41 | } |
||
| 42 |