Passed
Pull Request — master (#1946)
by Oliver
04:50 queued 01:14
created
src/Phinx/Db/Adapter/SQLiteAdapter.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -370,8 +370,8 @@  discard block
 block discarded – undo
370 370
             // Handle id => "field_name" to support AUTO_INCREMENT
371 371
             $column = new Column();
372 372
             $column->setName($options['id'])
373
-                   ->setType('integer')
374
-                   ->setIdentity(true);
373
+                    ->setType('integer')
374
+                    ->setIdentity(true);
375 375
 
376 376
             if (isset($options['limit'])) {
377 377
                 $column->setLimit($options['limit']);
@@ -655,12 +655,12 @@  discard block
 block discarded – undo
655 655
             $default = $this->parseDefaultValue($columnInfo['dflt_value'], $type['name']);
656 656
 
657 657
             $column->setName($columnInfo['name'])
658
-                   ->setNull($columnInfo['notnull'] !== '1')
659
-                   ->setDefault($default)
660
-                   ->setType($type['name'])
661
-                   ->setLimit($type['limit'])
662
-                   ->setScale($type['scale'])
663
-                   ->setIdentity($columnInfo['name'] === $identity);
658
+                    ->setNull($columnInfo['notnull'] !== '1')
659
+                    ->setDefault($default)
660
+                    ->setType($type['name'])
661
+                    ->setLimit($type['limit'])
662
+                    ->setScale($type['scale'])
663
+                    ->setIdentity($columnInfo['name'] === $identity);
664 664
 
665 665
             $columns[] = $column;
666 666
         }
Please login to merge, or discard this patch.
src/Phinx/Db/Adapter/PostgresAdapter.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
         $options = $table->getOptions();
202 202
         $parts = $this->getSchemaName($table->getName());
203 203
 
204
-         // Add the default primary key
204
+            // Add the default primary key
205 205
         if (!isset($options['id']) || (isset($options['id']) && $options['id'] === true)) {
206 206
             $options['id'] = 'id';
207 207
         }
@@ -210,8 +210,8 @@  discard block
 block discarded – undo
210 210
             // Handle id => "field_name" to support AUTO_INCREMENT
211 211
             $column = new Column();
212 212
             $column->setName($options['id'])
213
-                   ->setType('integer')
214
-                   ->setIdentity(true);
213
+                    ->setType('integer')
214
+                    ->setIdentity(true);
215 215
 
216 216
             if (isset($options['limit'])) {
217 217
                 $column->setLimit($options['limit']);
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
             }
239 239
         }
240 240
 
241
-         // set the primary key(s)
241
+            // set the primary key(s)
242 242
         if (isset($options['primary_key'])) {
243 243
             $sql = rtrim($sql);
244 244
             $sql .= sprintf(' CONSTRAINT %s PRIMARY KEY (', $this->quoteColumnName($parts['table'] . '_pkey'));
@@ -433,11 +433,11 @@  discard block
 block discarded – undo
433 433
 
434 434
             $column = new Column();
435 435
             $column->setName($columnInfo['column_name'])
436
-                   ->setType($columnType)
437
-                   ->setNull($columnInfo['is_nullable'] === 'YES')
438
-                   ->setDefault($columnDefault)
439
-                   ->setIdentity($columnInfo['is_identity'] === 'YES')
440
-                   ->setScale($columnInfo['numeric_scale']);
436
+                    ->setType($columnType)
437
+                    ->setNull($columnInfo['is_nullable'] === 'YES')
438
+                    ->setDefault($columnDefault)
439
+                    ->setIdentity($columnInfo['is_identity'] === 'YES')
440
+                    ->setScale($columnInfo['numeric_scale']);
441 441
 
442 442
             if (preg_match('/\bwith time zone$/', $columnInfo['data_type'])) {
443 443
                 $column->setTimezone(true);
Please login to merge, or discard this patch.
src/Phinx/Db/Adapter/MysqlAdapter.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -267,9 +267,9 @@  discard block
 block discarded – undo
267 267
             // Handle id => "field_name" to support AUTO_INCREMENT
268 268
             $column = new Column();
269 269
             $column->setName($options['id'])
270
-                   ->setType('integer')
271
-                   ->setSigned(isset($options['signed']) ? $options['signed'] : true)
272
-                   ->setIdentity(true);
270
+                    ->setType('integer')
271
+                    ->setSigned(isset($options['signed']) ? $options['signed'] : true)
272
+                    ->setIdentity(true);
273 273
 
274 274
             if (isset($options['limit'])) {
275 275
                 $column->setLimit($options['limit']);
@@ -444,12 +444,12 @@  discard block
 block discarded – undo
444 444
 
445 445
             $column = new Column();
446 446
             $column->setName($columnInfo['Field'])
447
-                   ->setNull($columnInfo['Null'] !== 'NO')
448
-                   ->setDefault($columnInfo['Default'])
449
-                   ->setType($phinxType['name'])
450
-                   ->setSigned(strpos($columnInfo['Type'], 'unsigned') === false)
451
-                   ->setLimit($phinxType['limit'])
452
-                   ->setScale($phinxType['scale']);
447
+                    ->setNull($columnInfo['Null'] !== 'NO')
448
+                    ->setDefault($columnInfo['Default'])
449
+                    ->setType($phinxType['name'])
450
+                    ->setSigned(strpos($columnInfo['Type'], 'unsigned') === false)
451
+                    ->setLimit($phinxType['limit'])
452
+                    ->setScale($phinxType['scale']);
453 453
 
454 454
             if ($columnInfo['Extra'] === 'auto_increment') {
455 455
                 $column->setIdentity(true);
Please login to merge, or discard this patch.
src/Phinx/Db/Adapter/SqlServerAdapter.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -235,8 +235,8 @@  discard block
 block discarded – undo
235 235
             // Handle id => "field_name" to support AUTO_INCREMENT
236 236
             $column = new Column();
237 237
             $column->setName($options['id'])
238
-                   ->setType('integer')
239
-                   ->setIdentity(true);
238
+                    ->setType('integer')
239
+                    ->setIdentity(true);
240 240
 
241 241
             if (isset($options['limit'])) {
242 242
                 $column->setLimit($options['limit']);
@@ -469,11 +469,11 @@  discard block
 block discarded – undo
469 469
 
470 470
             $column = new Column();
471 471
             $column->setName($columnInfo['name'])
472
-                   ->setType($type)
473
-                   ->setNull($columnInfo['null'] !== 'NO')
474
-                   ->setDefault($this->parseDefault($columnInfo['default']))
475
-                   ->setIdentity($columnInfo['identity'] === '1')
476
-                   ->setComment($this->getColumnComment($columnInfo['table_name'], $columnInfo['name']));
472
+                    ->setType($type)
473
+                    ->setNull($columnInfo['null'] !== 'NO')
474
+                    ->setDefault($this->parseDefault($columnInfo['default']))
475
+                    ->setIdentity($columnInfo['identity'] === '1')
476
+                    ->setComment($this->getColumnComment($columnInfo['table_name'], $columnInfo['name']));
477 477
 
478 478
             if (!empty($columnInfo['char_length'])) {
479 479
                 $column->setLimit($columnInfo['char_length']);
@@ -795,7 +795,7 @@  discard block
 block discarded – undo
795 795
 
796 796
         foreach ($indexes as $name => $index) {
797 797
             if ($name === $indexName) {
798
-                 return true;
798
+                    return true;
799 799
             }
800 800
         }
801 801
 
Please login to merge, or discard this patch.