Completed
Pull Request — develop (#1213)
by Luke
38s
created
src/N98/Magento/Command/Developer/Module/ListMissingFromConfigCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.