Passed
Branch feature-validator (0d7506)
by Thomas
02:52
created
src/Dbal/Mysql.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -91,8 +91,7 @@
 block discarded – undo
91 91
 
92 92
         $definition['column_name'] = $rawColumn['Field'];
93 93
         $definition['is_nullable'] = $rawColumn['Null'] === 'YES';
94
-        $definition['column_default'] = $rawColumn['Default'] !== null ? $rawColumn['Default'] :
95
-            ($rawColumn['Extra'] === 'auto_increment' ? 'sequence(AUTO_INCREMENT)' : null);
94
+        $definition['column_default'] = $rawColumn['Default'] !== null ? $rawColumn['Default'] : ($rawColumn['Extra'] === 'auto_increment' ? 'sequence(AUTO_INCREMENT)' : null);
96 95
         $definition['character_maximum_length'] = null;
97 96
         $definition['datetime_precision'] = null;
98 97
 
Please login to merge, or discard this patch.
src/Dbal/Error.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
         $this->message = $template->substitute(
37 37
             $message ? $message : $this->message,
38 38
             [
39
-                'value' => (string)$value,
39
+                'value' => (string) $value,
40 40
                 'column' => $column->name,
41 41
                 'type' => get_class($column->type)
42 42
             ]
Please login to merge, or discard this patch.
src/Dbal/Pgsql.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
         $result = $this->entityManager->getConnection()->query($query->getQuery());
73 73
         $rawColumns = $result->fetchAll(PDO::FETCH_ASSOC);
74 74
         if (count($rawColumns) === 0) {
75
-            throw new Exception('Unknown table '  . $schemaTable);
75
+            throw new Exception('Unknown table ' . $schemaTable);
76 76
         }
77 77
 
78 78
         $cols = array_map(function ($columnDefinition) {
Please login to merge, or discard this patch.
src/Namer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
                 }
167 167
 
168 168
                 if (is_scalar($values[$var]) || is_null($values[$var])) {
169
-                    return (string)$values[$var];
169
+                    return (string) $values[$var];
170 170
                 }
171 171
 
172 172
                 // otherwise we assume it is an array
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
 
175 175
                 if (isset($arrayAccessor[0])) {
176 176
                     $from = $arrayAccessor[0] === '-' ?
177
-                        count($array) - abs($arrayAccessor) : (int)$arrayAccessor;
177
+                        count($array) - abs($arrayAccessor) : (int) $arrayAccessor;
178 178
 
179 179
                     if ($from >= count($array)) {
180 180
                         return '';
Please login to merge, or discard this patch.