Completed
Push — master ( a44a96...6cab0f )
by Insolita
01:37
created
src/CodeStatModule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
      * @see \yii\helpers\FileHelper::findFiles() 'except' doc
44 44
      * @var array
45 45
      */
46
-    public $exceptTargets= [
46
+    public $exceptTargets = [
47 47
             'config*',
48 48
             'vendor*',
49 49
             '*web/*',
Please login to merge, or discard this patch.
src/controllers/DefaultController.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
 
25 25
     /**
26 26
      * If true will output files with failed reads by Reflection class
27
-    */
27
+     */
28 28
     public $showErrors = false;
29 29
     
30 30
     protected $climate;
Please login to merge, or discard this 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.