@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | |
| 47 | 47 | public function enableExternalSupport(): self |
| 48 | 48 | { |
| 49 | - $this->parsers->enableExternalSupport($this->fs); |
|
| 49 | + $this->parsers->enableExternalSupport($this->fs); |
|
| 50 | 50 | |
| 51 | 51 | return $this; |
| 52 | 52 | } |
@@ -218,8 +218,8 @@ discard block |
||
| 218 | 218 | if($status['found'] === false) |
| 219 | 219 | { |
| 220 | 220 | $this->warning(sprintf( |
| 221 | - 'External file %s was not found', |
|
| 222 | - $file |
|
| 221 | + 'External file %s was not found', |
|
| 222 | + $file |
|
| 223 | 223 | )); |
| 224 | 224 | } |
| 225 | 225 | } |
@@ -44,7 +44,7 @@ |
||
| 44 | 44 | |
| 45 | 45 | public function getAllVariables(): array |
| 46 | 46 | { |
| 47 | - $variables = array_map(function($key){ |
|
| 47 | + $variables = array_map(function($key) { |
|
| 48 | 48 | return $this->extractVariableName($key); |
| 49 | 49 | }, array_keys($this->values)); |
| 50 | 50 | |
@@ -193,8 +193,7 @@ |
||
| 193 | 193 | if( |
| 194 | 194 | ! array_key_exists($parameter, $parameterValidators) |
| 195 | 195 | || ! $parameterValidators[$parameter] instanceof \Closure |
| 196 | - ) |
|
| 197 | - { |
|
| 196 | + ) { |
|
| 198 | 197 | return; |
| 199 | 198 | } |
| 200 | 199 | |
@@ -54,8 +54,8 @@ discard block |
||
| 54 | 54 | private function writeLevel($level): void |
| 55 | 55 | { |
| 56 | 56 | $message = str_pad(sprintf( |
| 57 | - '[%s]', |
|
| 58 | - strtoupper($level) |
|
| 57 | + '[%s]', |
|
| 58 | + strtoupper($level) |
|
| 59 | 59 | ), 10); |
| 60 | 60 | |
| 61 | 61 | $this->output->write($this->colorizeMessage($level, $message)); |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | if(isset($colors[$level])) |
| 72 | 72 | { |
| 73 | 73 | $message = sprintf( |
| 74 | - '<%1$s>%2$s</%1$s>', |
|
| 74 | + '<%1$s>%2$s</%1$s>', |
|
| 75 | 75 | 'fg=' . $colors[$level], |
| 76 | 76 | $message |
| 77 | 77 | ); |