@@ -23,14 +23,14 @@ |
||
23 | 23 | { |
24 | 24 | $id = $value['id'] ?? null; |
25 | 25 | |
26 | - if (! $id) { |
|
26 | + if (!$id) { |
|
27 | 27 | throw InvalidConfiguration::pageIdMissing(); |
28 | 28 | } |
29 | 29 | |
30 | 30 | $template = $value['template'] ?? null; |
31 | 31 | $variables = $value['variables'] ?? []; |
32 | 32 | |
33 | - if (! $template) { |
|
33 | + if (!$template) { |
|
34 | 34 | throw InvalidConfiguration::pageTemplateMissing($id); |
35 | 35 | } |
36 | 36 |