Test Setup Failed
Push — nln-bump-to-php8.3 ( 4ce985...2d3a4a )
by Nicolas
07:48 queued 06:51
created
src/Generator/ConfigurationFileGenerators/YamlGenerator.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
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
             ));
Please login to merge, or discard this 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\Generator\ConfigurationFileGenerators;
6 6
 
@@ -39,12 +39,12 @@  discard block
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/Generator/VariableProvider.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\Generator;
6 6
 
Please login to merge, or discard this patch.
src/Generator/NameTranslator.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\Generator;
6 6
 
Please login to merge, or discard this patch.
src/Generator/NameTranslators/FilePrefixTranslator.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\Generator\NameTranslators;
6 6
 
Please login to merge, or discard this patch.
src/Generator/NameTranslators/NullTranslator.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\Generator\NameTranslators;
6 6
 
Please login to merge, or discard this patch.
src/Generator/ConfigurationFileGenerator.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\Generator;
6 6
 
Please login to merge, or discard this patch.
src/Console/Diff.php 2 patches
Spacing   +2 added lines, -2 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\Console;
6 6
 
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
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
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Console/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\Console;
6 6
 
Please login to merge, or discard this patch.
src/Console/Hydrate.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\Console;
6 6
 
@@ -36,7 +36,7 @@  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
 
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
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
 
Please login to merge, or discard this patch.