Completed
Push — master ( 70f96e...85b25a )
by Andrey
02:36
created
config/viewManager.config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
             [
14 14
                 'form-comparator/default-diff' => __DIR__ . '/../view/form-comparator/default-diff.phtml',
15 15
             ],
16
-            file_exists(__DIR__ . '/../template_map.php') ? include __DIR__ . '/../template_map.php' : []
16
+            file_exists(__DIR__ . '/../template_map.php') ? include __DIR__ . '/../template_map.php' : [ ]
17 17
         )
18 18
     ]
19 19
 ];
Please login to merge, or discard this patch.
Module.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
         return array_merge_recursive(
71 71
             include __DIR__ . '/config/module.config.php',
72 72
             include __DIR__ . '/config/serviceManager.config.php',
73
-            include __DIR__ .'/config/viewManager.config.php'
73
+            include __DIR__ . '/config/viewManager.config.php'
74 74
         );
75 75
     }
76 76
 
Please login to merge, or discard this patch.
src/Comparator/FormComparator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
     {
49 49
         $this->context = $context;
50 50
 
51
-        $diff = [];
51
+        $diff = [ ];
52 52
         foreach ($this->context->getComparableForm() as $comparableForm) {
53 53
             $formDiff = $this->formDiffBuilder->buildDiff($comparableForm->getSourceForm(), $comparableForm->getTargetForm());
54 54
             $diff = array_merge($diff, $formDiff);
Please login to merge, or discard this patch.