Completed
Pull Request — develop (#829)
by Alexander
47s
created
src/N98/Magento/Command/System/CheckCommand.php 1 patch
Switch Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -118,22 +118,22 @@
 block discarded – undo
118 118
             $areaCode,
119 119
             function () use ($check, $results, $checkGroupClass) {
120 120
                 switch (true) {
121
-                case $check instanceof Check\SimpleCheck:
122
-                    $check->check($results);
123
-                    break;
124
-
125
-                case $check instanceof Check\StoreCheck:
126
-                    $this->checkStores($results, $checkGroupClass, $check);
127
-                    break;
128
-
129
-                case $check instanceof Check\WebsiteCheck:
130
-                    $this->checkWebsites($results, $checkGroupClass, $check);
131
-                    break;
132
-
133
-                default:
134
-                    throw new LogicException(
135
-                        sprintf('Unhandled check-class "%s"', $checkGroupClass)
136
-                    );
121
+                    case $check instanceof Check\SimpleCheck:
122
+                        $check->check($results);
123
+                        break;
124
+
125
+                    case $check instanceof Check\StoreCheck:
126
+                        $this->checkStores($results, $checkGroupClass, $check);
127
+                        break;
128
+
129
+                    case $check instanceof Check\WebsiteCheck:
130
+                        $this->checkWebsites($results, $checkGroupClass, $check);
131
+                        break;
132
+
133
+                    default:
134
+                        throw new LogicException(
135
+                            sprintf('Unhandled check-class "%s"', $checkGroupClass)
136
+                        );
137 137
             }
138 138
             }
139 139
         );
Please login to merge, or discard this patch.