| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | final class RedirectException extends NestApiException |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var string |
||
| 13 | */ |
||
| 14 | private $location; |
||
| 15 | |||
| 16 | 2 | public function __construct(string $location) |
|
| 17 | { |
||
| 18 | 2 | parent::__construct(); |
|
| 19 | 2 | $this->location = $location; |
|
| 20 | 2 | } |
|
| 21 | |||
| 22 | 2 | public function getLocation(): string |
|
| 25 | } |
||
| 26 | } |
||
| 27 |