@@ -27,7 +27,7 @@ |
||
27 | 27 | if(stripos($variableName, self::DELIMITER) === false) |
28 | 28 | { |
29 | 29 | throw new \RuntimeException(sprintf( |
30 | - 'Variable %s does not contain delimiter (%s)', |
|
30 | + 'Variable %s does not contain delimiter (%s)', |
|
31 | 31 | $variableName, |
32 | 32 | self::DELIMITER |
33 | 33 | )); |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace Karma\Generator\ConfigurationFileGenerators; |
6 | 6 | |
@@ -39,12 +39,12 @@ discard block |
||
39 | 39 | |
40 | 40 | foreach($parts as $part) |
41 | 41 | { |
42 | - if(! isset($current[$part])) |
|
42 | + if( ! isset($current[$part])) |
|
43 | 43 | { |
44 | 44 | $current[$part] = array(); |
45 | 45 | } |
46 | 46 | |
47 | - $current= & $current[$part]; |
|
47 | + $current = & $current[$part]; |
|
48 | 48 | } |
49 | 49 | |
50 | 50 | $current = $value; |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace Karma\Generator; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace Karma\Generator; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace Karma\Generator\NameTranslators; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace Karma\Generator\NameTranslators; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace Karma\Generator; |
6 | 6 |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace Karma\Console; |
6 | 6 | |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | $table->enableFormattingTags() |
48 | 48 | ->setHeaders(array($environment1, $environment2)) |
49 | 49 | ->displayKeys() |
50 | - ->setValueRenderingFunction(function($value){ |
|
50 | + ->setValueRenderingFunction(function($value) { |
|
51 | 51 | return $this->formatValue($value); |
52 | 52 | }); |
53 | 53 |
@@ -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 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace Karma\Console; |
6 | 6 |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace Karma\Console; |
6 | 6 | |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | { |
37 | 37 | $unusedVariables = $processor->getUnusedVariables(); |
38 | 38 | |
39 | - if(! empty($unusedVariables)) |
|
39 | + if( ! empty($unusedVariables)) |
|
40 | 40 | { |
41 | 41 | $logger = $this->app['logger']; |
42 | 42 | |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | { |
54 | 54 | $unvaluedVariables = $processor->getUnvaluedVariables(); |
55 | 55 | |
56 | - if(! empty($unvaluedVariables)) |
|
56 | + if( ! empty($unvaluedVariables)) |
|
57 | 57 | { |
58 | 58 | $logger = $this->app['logger']; |
59 | 59 |