Completed
Push — prototype ( 3bfdd7...aec713 )
by Peter
07:47
created
library/WebinoAppLib/Console/ConsoleDefault.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
             }
95 95
 
96 96
             $space = str_repeat(' ', $maxLen + 10 - strlen($command));
97
-            $cli->out($space . ' - ' . $title);
97
+            $cli->out($space.' - '.$title);
98 98
         }
99 99
 
100 100
         $cli->br();
Please login to merge, or discard this patch.
library/WebinoAppLib/Service/Console.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -639,7 +639,7 @@
 block discarded – undo
639 639
      */
640 640
     public function sp($count = 1)
641 641
     {
642
-        for ($i=0; $i < $count; $i++) {
642
+        for ($i = 0; $i < $count; $i++) {
643 643
             $this->engine->inline(' ');
644 644
         }
645 645
         return $this;
Please login to merge, or discard this patch.
library/WebinoHtmlLib/Html/HeightStyleTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      */
25 25
     public function setHeight($height, $units = 'px')
26 26
     {
27
-        $this->setStyle(['height' => $height . $units]);
27
+        $this->setStyle(['height' => $height.$units]);
28 28
         return $this;
29 29
     }
30 30
 }
Please login to merge, or discard this patch.