@@ -45,7 +45,7 @@ |
||
45 | 45 | $table->enableFormattingTags() |
46 | 46 | ->setHeaders(array($environment1, $environment2)) |
47 | 47 | ->displayKeys() |
48 | - ->setValueRenderingFunction(function($value){ |
|
48 | + ->setValueRenderingFunction(function($value) { |
|
49 | 49 | return $this->formatValue($value); |
50 | 50 | }); |
51 | 51 |
@@ -266,8 +266,7 @@ |
||
266 | 266 | { |
267 | 267 | $formatter = $this->getFormatterForCurrentTargetFile(); |
268 | 268 | |
269 | - $content = preg_replace_callback(self::VARIABLE_REGEX, function(array $matches) use($environment, $formatter) |
|
270 | - { |
|
269 | + $content = preg_replace_callback(self::VARIABLE_REGEX, function(array $matches) use($environment, $formatter) { |
|
271 | 270 | $value = $this->readValueToInject($matches['variableName'], $environment); |
272 | 271 | |
273 | 272 | if(is_array($value)) |
@@ -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 |