@@ -218,7 +218,7 @@ |
||
218 | 218 | */ |
219 | 219 | protected function progressBar(int $counter, int $total): void |
220 | 220 | { |
221 | - $length = (int) ( ($counter/$total) * 100 ); |
|
221 | + $length = (int) (($counter / $total) * 100); |
|
222 | 222 | $active = ($counter === $total) ? '' : '>'; |
223 | 223 | $loadbar = sprintf( |
224 | 224 | "\r[%-100s] %d%% (%s/%s)", |
@@ -76,8 +76,11 @@ discard block |
||
76 | 76 | // Flip no-value option present to a true value |
77 | 77 | // A no-value option that is present multiple times converted to a number |
78 | 78 | foreach ($args as $key => $value) { |
79 | - if ($value === false) $args[$key] = true; |
|
80 | - elseif (is_array($value)) $args[$key] = count($args[$key]); |
|
79 | + if ($value === false) { |
|
80 | + $args[$key] = true; |
|
81 | + } elseif (is_array($value)) { |
|
82 | + $args[$key] = count($args[$key]); |
|
83 | + } |
|
81 | 84 | } |
82 | 85 | |
83 | 86 | // Non present values get false value |
@@ -97,10 +100,11 @@ discard block |
||
97 | 100 | */ |
98 | 101 | protected function out(string $s): void |
99 | 102 | { |
100 | - if ($this->echo) |
|
101 | - echo $s . PHP_EOL; |
|
102 | - else |
|
103 | - $this->out .= $s . PHP_EOL; |
|
103 | + if ($this->echo) { |
|
104 | + echo $s . PHP_EOL; |
|
105 | + } else { |
|
106 | + $this->out .= $s . PHP_EOL; |
|
107 | + } |
|
104 | 108 | } |
105 | 109 | |
106 | 110 | /** |
@@ -111,11 +115,15 @@ discard block |
||
111 | 115 | $flags = join(', ', array_keys(array_filter($this->args, function($val): bool { |
112 | 116 | return $val === true; |
113 | 117 | }))); |
114 | - if (empty($flags) == false) $this->out("Flags: [ {$flags} ]"); |
|
118 | + if (empty($flags) == false) { |
|
119 | + $this->out("Flags: [ {$flags} ]"); |
|
120 | + } |
|
115 | 121 | $options = urldecode(http_build_query(array_filter($this->args, function($val): bool { |
116 | 122 | return is_bool($val) === false; |
117 | 123 | }), '', ", ")); |
118 | - if (empty($options) == false) $this->out("Options: [ {$options} ]"); |
|
124 | + if (empty($options) == false) { |
|
125 | + $this->out("Options: [ {$options} ]"); |
|
126 | + } |
|
119 | 127 | $this->out(""); |
120 | 128 | } |
121 | 129 | |
@@ -141,7 +149,9 @@ discard block |
||
141 | 149 | if (method_exists($this, $command_method) === false) { |
142 | 150 | throw new \Exception("Command {$this->command} does not exist"); |
143 | 151 | } |
144 | - if ($this->verbose()) $this->input(); |
|
152 | + if ($this->verbose()) { |
|
153 | + $this->input(); |
|
154 | + } |
|
145 | 155 | $this->$command_method(); |
146 | 156 | return $this; |
147 | 157 | } |