@@ -13,7 +13,7 @@ |
||
| 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 | ]; |
@@ -70,7 +70,7 @@ |
||
| 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 | |
@@ -48,7 +48,7 @@ |
||
| 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); |