Passed
Push — develop ( 30ebd1...915009 )
by Brent
06:10
created
src/Stitcher/Page/PageFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,14 +23,14 @@
 block discarded – undo
23 23
     {
24 24
         $id = $value['id'] ?? null;
25 25
 
26
-        if (! $id) {
26
+        if (!$id) {
27 27
             throw InvalidConfiguration::pageIdMissing($value);
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
 
Please login to merge, or discard this patch.