Completed
Push — master ( a44a96...6cab0f )
by Insolita
01:37
created
src/controllers/DefaultController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 
36 36
     public function options($actionID)
37 37
     {
38
-        return array_merge(parent::options($actionID) , ['showErrors']);
38
+        return array_merge(parent::options($actionID), ['showErrors']);
39 39
     }
40 40
 
41 41
     public function actionIndex()
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
         $this->headline('YII-2 Code Statistic', 'lightYellow');
55 55
         $this->climate->table($summary);
56 56
 
57
-        if($this->showErrors === true){
57
+        if ($this->showErrors === true) {
58 58
             $this->headline('Failed for resolve', 'lightYellow');
59 59
             $this->climate->table($service->errorList());
60 60
         }
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
                     $value = $this->wrap($value, 'light_cyan');
82 82
                 }
83 83
                 $key = $this->wrap($key, 'green');
84
-                $colorized[$i][$key] = (string)$value;
84
+                $colorized[$i][$key] = (string) $value;
85 85
             }
86 86
         }
87 87
         return $colorized;
Please login to merge, or discard this patch.