@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | $moduleNames = []; |
84 | 84 | foreach ($finder as $file) { |
85 | 85 | $xml = simplexml_load_file($file); |
86 | - $schemaData = json_decode(json_encode((array)$xml), true); |
|
86 | + $schemaData = json_decode(json_encode((array) $xml), true); |
|
87 | 87 | if (!isset($schemaData['module']['@attributes']['name'])) { |
88 | 88 | continue; |
89 | 89 | } |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | continue; |
93 | 93 | } |
94 | 94 | if (stripos($moduleName, 'Magento_Test') !== false) { |
95 | - continue; // Skip test modules from magento |
|
95 | + continue; // Skip test modules from magento |
|
96 | 96 | } |
97 | 97 | if (in_array($moduleName, ['Magento_A', 'Magento_B', 'Magento_FirstModule'])) { |
98 | 98 | continue; |