Code Duplication    Length = 3-3 lines in 2 locations

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

@@ 282-284 (lines=3) @@
279
     */
280
    public function updateCreatedTableName($tableName, $newTableName)
281
    {
282
        if (($key = array_search($tableName, $this->createdTables)) !== false) {
283
            $this->createdTables[$key] = $newTableName;
284
        }
285
    }
286
287
    /**
@@ 292-294 (lines=3) @@
289
     */
290
    public function removeCreatedTable($tableName)
291
    {
292
        if (($key = array_search($tableName, $this->createdTables)) !== false) {
293
            unset($this->createdTables[$key]);
294
        }
295
    }
296
297
    /**