Completed
Push — master ( 4dda9f...9a51b8 )
by Nicolas
02:22
created
src/Generator/ConfigurationFileGenerators/YamlGenerator.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\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/Display/CliTable.php 1 patch
Spacing   +7 added lines, -7 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\Display;
6 6
 
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
         $lines = array();
70 70
         $lines[] = $separatorRow;
71 71
 
72
-        if(! empty($this->headers))
72
+        if( ! empty($this->headers))
73 73
         {
74 74
             $lines[] = $this->renderLine($this->headers);
75 75
             $lines[] = $separatorRow;
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
             return;
93 93
         }
94 94
 
95
-        if(! empty($this->headers))
95
+        if( ! empty($this->headers))
96 96
         {
97 97
             array_unshift($this->headers, '');
98 98
         }
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
 
111 111
         $this->columnsSize = array_pad(array(), $this->nbColumns, -1);
112 112
 
113
-        if(! empty($this->headers))
113
+        if( ! empty($this->headers))
114 114
         {
115 115
             $this->updateColumnsSize(array($this->headers));
116 116
         }
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
 
125 125
         foreach($this->rows as $row)
126 126
         {
127
-            if(is_array($row) ||$row instanceof \Countable)
127
+            if(is_array($row) || $row instanceof \Countable)
128 128
             {
129 129
                 $this->nbColumns = max($this->nbColumns, count($row));
130 130
             }
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
     {
138 138
         foreach($newValues as $row)
139 139
         {
140
-            if(! is_array($row))
140
+            if( ! is_array($row))
141 141
             {
142 142
                 throw new \InvalidArgumentException('Rows must be arrays');
143 143
             }
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
 
188 188
     private function stripTags(string $value): string
189 189
     {
190
-        return preg_replace ('/<[^>]*>/', '', $value);
190
+        return preg_replace('/<[^>]*>/', '', $value);
191 191
     }
192 192
 
193 193
     private function renderLine(array $row): string
Please login to merge, or discard this patch.
src/Console/Diff.php 1 patch
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.
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.