Passed
Push — nln-php7 ( 12eaac )
by Nicolas
05:28
created
src/Karma/Command/Hydrate.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Karma/Command/Generate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Karma\Command;
6 6
 
Please login to merge, or discard this patch.
src/Karma/Command/ConfigureActionCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
         }
Please login to merge, or discard this patch.
src/Karma/Command/Rollback.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Karma\Command;
6 6
 
Please login to merge, or discard this patch.
src/Karma/Command/Display.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Karma\Command;
6 6
 
Please login to merge, or discard this patch.
src/Karma/Filesystem/Adapters/SingleLocalFile.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
         }
Please login to merge, or discard this patch.
src/Karma/Filesystem/Adapters/MultipleAdapter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Karma/Filters/FileFilterIterator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Karma\Filters;
6 6
 
Please login to merge, or discard this patch.
src/Karma/Console.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Karma;
6 6
 
Please login to merge, or discard this patch.