1 | <?php |
||
16 | final class ControllerConfig |
||
17 | { |
||
18 | /** |
||
19 | * @var int |
||
20 | */ |
||
21 | private $redirectResponseCode; |
||
22 | |||
23 | /** |
||
24 | * @param int $redirectResponseCode |
||
25 | */ |
||
26 | public function __construct(int $redirectResponseCode) |
||
36 | |||
37 | /** |
||
38 | * @return int |
||
39 | */ |
||
40 | public function getRedirectResponseCode(): int |
||
44 | } |
||
45 |