Passed
Push — master ( b9da30...84e51b )
by kozo
01:33
created
src/lib/Decorator.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
     public function simple($text)
17 17
     {
18 18
         if ($this->isInteractive() === false) {
19
-            return ;
19
+            return;
20 20
         }
21 21
 
22 22
         $this->collector->text($text);
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
     public function greenText($text)
26 26
     {
27 27
         if ($this->isInteractive() === false) {
28
-            return ;
28
+            return;
29 29
         }
30 30
 
31 31
         $d = $this->color->apply('color_82', $text);
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     public function yellowText($text)
36 36
     {
37 37
         if ($this->isInteractive() === false) {
38
-            return ;
38
+            return;
39 39
         }
40 40
 
41 41
         $d = $this->color->apply('color_226', $text);
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
     public function redText($text)
46 46
     {
47 47
         if ($this->isInteractive() === false) {
48
-            return ;
48
+            return;
49 49
         }
50 50
 
51 51
         $d = $this->color->apply('color_196', $text);
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
     public function alert($text)
56 56
     {
57 57
         if ($this->isInteractive() === false) {
58
-            return ;
58
+            return;
59 59
         }
60 60
 
61 61
         $length = mb_strlen($text) + 12;
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
     public function flashSuccess($message = ' All Installed')
72 72
     {
73 73
         if ($this->isInteractive() === false) {
74
-            return ;
74
+            return;
75 75
         }
76 76
 
77 77
         $width = $this->getWidth();
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     public function flashError($message = ' Please update crontab.')
92 92
     {
93 93
         if ($this->isInteractive() === false) {
94
-            return ;
94
+            return;
95 95
         }
96 96
 
97 97
         $width = $this->getWidth();
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
     public function hr()
112 112
     {
113 113
         if ($this->isInteractive() === false) {
114
-            return ;
114
+            return;
115 115
         }
116 116
 
117 117
         $width = $this->getWidth();
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
     public function newLine($line = 1)
123 123
     {
124 124
         if ($this->isInteractive() === false) {
125
-            return ;
125
+            return;
126 126
         }
127 127
 
128 128
         for ($i = 0; $i < $line; $i++) {
Please login to merge, or discard this patch.