1 | <?php declare(strict_types = 1); |
||
8 | abstract class AbstractShowableTranslatableDomainException extends Exception implements ShowableTranslatableDomainException |
||
9 | { |
||
10 | /** @var array|mixed[] */ |
||
11 | protected $messageParameters; |
||
12 | |||
13 | /** |
||
14 | * @param string $message |
||
15 | * @param array|mixed[] $messageParameters |
||
16 | * @param int $code |
||
17 | * @param Throwable|null $previous |
||
18 | */ |
||
19 | 2 | public function __construct( |
|
28 | |||
29 | /** |
||
30 | * @return array|mixed[] |
||
31 | */ |
||
32 | 2 | public function getMessageParameters(): array |
|
36 | } |
||
37 |