1 | <?php declare(strict_types = 1); |
||
5 | class GenericShowableMutationError extends AbstractMutationError |
||
6 | { |
||
7 | /** |
||
8 | * @param string $errorMessage |
||
9 | * @param array|mixed[] $errorMessageParams |
||
10 | * |
||
11 | * @return GenericShowableMutationError |
||
12 | */ |
||
13 | 6 | public static function create(string $errorMessage, array $errorMessageParams = []): self |
|
17 | } |
||
18 |