Completed
Push — 2.0 ( 896296...c88480 )
by Marco
09:04
created
src/Comodojo/Extender/Components/PluginsLoader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,8 +27,8 @@
 block discarded – undo
27 27
 
28 28
         $plain_plugins = [];
29 29
 
30
-        foreach ($config as $package => $plugins) {
31
-            foreach ($plugins as $plugin) {
30
+        foreach ( $config as $package => $plugins ) {
31
+            foreach ( $plugins as $plugin ) {
32 32
                 $plain_plugins[] = $plugin;
33 33
             }
34 34
         }
Please login to merge, or discard this patch.
src/Comodojo/Extender/Components/CommandsLoader.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -27,9 +27,9 @@
 block discarded – undo
27 27
 
28 28
         $classes = [];
29 29
 
30
-        foreach ($config as $package) {
31
-            foreach ($package as $command) {
32
-                if ( $command['scope'] === 'extender') {
30
+        foreach ( $config as $package ) {
31
+            foreach ( $package as $command ) {
32
+                if ( $command['scope'] === 'extender' ) {
33 33
                     $classes[] = $command['class'];
34 34
                 }
35 35
             }
Please login to merge, or discard this patch.