@@ -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\Command; |
| 6 | 6 | |
@@ -36,11 +36,11 @@ 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 | |
| 43 | - $logger->warning('You have unused variables : you should remove them or check if you have not mispelled them'). |
|
| 43 | + $logger->warning('You have unused variables : you should remove them or check if you have not mispelled them') . |
|
| 44 | 44 | $logger->warning(sprintf( |
| 45 | 45 | 'Unused variables : %s', |
| 46 | 46 | implode(', ', $unusedVariables) |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | { |
| 53 | 53 | $unvaluedVariables = $processor->getUnvaluedVariables(); |
| 54 | 54 | |
| 55 | - if(! empty($unvaluedVariables)) |
|
| 55 | + if( ! empty($unvaluedVariables)) |
|
| 56 | 56 | { |
| 57 | 57 | $logger = $this->app['logger']; |
| 58 | 58 | |
@@ -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\Command; |
| 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\Command; |
| 6 | 6 | |
@@ -107,7 +107,7 @@ discard block |
||
| 107 | 107 | $sourcePath = $profile->getSourcePath(); |
| 108 | 108 | } |
| 109 | 109 | |
| 110 | - if(! is_array($sourcePath)) |
|
| 110 | + if( ! is_array($sourcePath)) |
|
| 111 | 111 | { |
| 112 | 112 | $sourcePath = array($sourcePath); |
| 113 | 113 | } |
@@ -173,7 +173,7 @@ discard block |
||
| 173 | 173 | { |
| 174 | 174 | $strings = $input->getOption($optionName); |
| 175 | 175 | |
| 176 | - if(! is_array($strings)) |
|
| 176 | + if( ! is_array($strings)) |
|
| 177 | 177 | { |
| 178 | 178 | $strings = array($strings); |
| 179 | 179 | } |
@@ -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\Command; |
| 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\Command; |
| 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\Filesystem\Adapters; |
| 6 | 6 | |
@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | |
| 21 | 21 | public function read($key) |
| 22 | 22 | { |
| 23 | - if(! $this->exists($key)) |
|
| 23 | + if( ! $this->exists($key)) |
|
| 24 | 24 | { |
| 25 | 25 | return false; |
| 26 | 26 | } |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | |
| 46 | 46 | public function mtime($key) |
| 47 | 47 | { |
| 48 | - if(! $this->exists($key)) |
|
| 48 | + if( ! $this->exists($key)) |
|
| 49 | 49 | { |
| 50 | 50 | return false; |
| 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\Filesystem\Adapters; |
| 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\Filters; |
| 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; |
| 6 | 6 | |