Completed
Pull Request — master (#36)
by Thomas
02:44
created
src/Dbal/Mysql.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -74,8 +74,7 @@
 block discarded – undo
74 74
         $definition['data_type'] = $this->normalizeType($rawColumn['Type']);
75 75
         $definition['column_name'] = $rawColumn['Field'];
76 76
         $definition['is_nullable'] = $rawColumn['Null'] === 'YES';
77
-        $definition['column_default'] = $rawColumn['Default'] !== null ? $rawColumn['Default'] :
78
-            ($rawColumn['Extra'] === 'auto_increment' ? 'sequence(AUTO_INCREMENT)' : null);
77
+        $definition['column_default'] = $rawColumn['Default'] !== null ? $rawColumn['Default'] : ($rawColumn['Extra'] === 'auto_increment' ? 'sequence(AUTO_INCREMENT)' : null);
79 78
         $definition['character_maximum_length'] = null;
80 79
         $definition['datetime_precision'] = null;
81 80
 
Please login to merge, or discard this patch.
src/Dbal/Sqlite.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
         $rawColumns = $result->fetchAll(\PDO::FETCH_ASSOC);
58 58
 
59 59
         if (count($rawColumns) === 0) {
60
-            throw new Exception('Unknown table '  . $table);
60
+            throw new Exception('Unknown table ' . $table);
61 61
         }
62 62
 
63 63
         $hasMultiplePrimaryKey = $this->hasMultiplePrimaryKey($rawColumns);
Please login to merge, or discard this patch.
src/Dbal/Type/Time.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      */
23 23
     public function __construct($precision = null)
24 24
     {
25
-        $this->precision = (int)$precision;
25
+        $this->precision = (int) $precision;
26 26
     }
27 27
 
28 28
     public static function factory($columnDefinition)
Please login to merge, or discard this patch.
src/Dbal/Type/VarChar.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      */
25 25
     public function __construct($maxLength = null)
26 26
     {
27
-        $this->maxLength = (int)$maxLength;
27
+        $this->maxLength = (int) $maxLength;
28 28
     }
29 29
 
30 30
     public static function factory($columnDefinition)
Please login to merge, or discard this patch.
src/Dbal/Type/DateTime.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      */
23 23
     public function __construct($precision = null)
24 24
     {
25
-        $this->precision = (int)$precision;
25
+        $this->precision = (int) $precision;
26 26
     }
27 27
 
28 28
     public static function factory($columnDefinition)
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
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
         $result = $this->em->getConnection()->query($query->getQuery());
72 72
         $rawColumns = $result->fetchAll(PDO::FETCH_ASSOC);
73 73
         if (count($rawColumns) === 0) {
74
-            throw new Exception('Unknown table '  . $schemaTable);
74
+            throw new Exception('Unknown table ' . $schemaTable);
75 75
         }
76 76
 
77 77
         $cols = array_map(function ($columnDefinition) {
Please login to merge, or discard this patch.