Code Duplication    Length = 8-8 lines in 2 locations

src/Phinx/Db/Adapter/TablePrefixAdapter.php 2 locations

@@ 78-85 (lines=8) @@
75
    /**
76
     * {@inheritdoc}
77
     */
78
    public function createTable(Table $table, array $columns = [], array $indexes = [])
79
    {
80
        $adapterTable = new Table(
81
            $this->getAdapterTableName($table->getName()),
82
            $table->getOptions()
83
        );
84
        parent::createTable($adapterTable, $columns, $indexes);
85
    }
86
87
    /**
88
     * {@inheritdoc}
@@ 102-109 (lines=8) @@
99
    /**
100
     * {@inheritdoc}
101
     */
102
    public function changeComment(Table $table, string $newComment = null)
103
    {
104
        $adapterTable = new Table(
105
            $this->getAdapterTableName($table->getName()),
106
            $table->getOptions()
107
        );
108
        parent::changeComment($adapterTable, $newComment);
109
    }
110
111
    /**
112
     * {@inheritdoc}