| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | class BadGatewayException extends HttpException |
||
| 16 | { |
||
| 17 | protected array $msgParams; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param string $msgKey i18n key |
||
| 21 | * @param array $msgParams Params for i18n message, if applicable. |
||
| 22 | * @param Throwable|null $e |
||
| 23 | */ |
||
| 24 | public function __construct(string $msgKey, array $msgParams = [], ?Throwable $e = null) |
||
| 28 | } |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @return array |
||
| 32 | */ |
||
| 33 | public function getMsgParams(): array |
||
| 38 |