Code Duplication    Length = 11-11 lines in 2 locations

src/Phinx/Db/Adapter/SqlServerAdapter.php 1 location

@@ 483-493 (lines=11) @@
480
    /**
481
     * {@inheritdoc}
482
     */
483
    protected function getAddColumnInstructions(Table $table, Column $column)
484
    {
485
        $alter = sprintf(
486
            'ALTER TABLE %s ADD %s %s',
487
            $table->getName(),
488
            $this->quoteColumnName($column->getName()),
489
            $this->getColumnSqlDefinition($column)
490
        );
491
492
        return new AlterInstructions([], [$alter]);
493
    }
494
495
    /**
496
     * {@inheritdoc}

src/Phinx/Db/Adapter/SQLiteAdapter.php 1 location

@@ 625-635 (lines=11) @@
622
    /**
623
     * {@inheritdoc}
624
     */
625
    protected function getAddColumnInstructions(Table $table, Column $column)
626
    {
627
        $alter = sprintf(
628
            'ALTER TABLE %s ADD COLUMN %s %s',
629
            $this->quoteTableName($table->getName()),
630
            $this->quoteColumnName($column->getName()),
631
            $this->getColumnSqlDefinition($column)
632
        );
633
634
        return new AlterInstructions([], [$alter]);
635
    }
636
637
    /**
638
     * Returns the original CREATE statement for the give table