Passed
Pull Request — master (#2)
by kozo
01:29
created
src/Config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     private function init($options)
18 18
     {
19 19
         if (empty($options)) {
20
-            return ;
20
+            return;
21 21
         }
22 22
 
23 23
         foreach ($options as $key => $val)
Please login to merge, or discard this patch.
src/lib/Decorator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -82,14 +82,14 @@
 block discarded – undo
82 82
 
83 83
     public function hr()
84 84
     {
85
-        $width  = intval(trim(`tput cols`));
85
+        $width = intval(trim(`tput cols`));
86 86
         $d = str_repeat('-', $width) . "\n";
87 87
         $this->collector->text($d);
88 88
     }
89 89
 
90 90
     public function newLine($line = 1)
91 91
     {
92
-        for ($i=0; $i < $line; $i++) {
92
+        for ($i = 0; $i < $line; $i++) {
93 93
             $this->collector->text("\n", false);
94 94
         }
95 95
     }
Please login to merge, or discard this patch.