@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | $opt = $collection->add($k, $v['description']); |
| 119 | 119 | |
| 120 | 120 | if (array_key_exists('isa', $v)) { |
| 121 | - if(array_key_exists('regex', $v) && strtolower($v['isa']) === 'regex') { |
|
| 121 | + if (array_key_exists('regex', $v) && strtolower($v['isa']) === 'regex') { |
|
| 122 | 122 | $opt->isa('regex', $v['regex']); |
| 123 | 123 | } else { |
| 124 | 124 | $opt->isa($v['isa']); |
@@ -238,7 +238,7 @@ discard block |
||
| 238 | 238 | echo self::EOL; |
| 239 | 239 | } |
| 240 | 240 | |
| 241 | - public static function echo(string $str, ?string $foreground_color = null): void { |
|
| 241 | + public static function echo(string $str, ?string $foreground_color = null) : void { |
|
| 242 | 242 | |
| 243 | 243 | $lines = preg_split("/\r\n|\n|\r/", $str); |
| 244 | 244 | |