Code Duplication    Length = 5-5 lines in 2 locations

src/Ifsnop/Mysqldump/Mysqldump.php 2 locations

@@ 468-472 (lines=5) @@
465
        }
466
467
        // Listing all triggers from database
468
        if (false === $this->dumpSettings['skip-triggers']) {
469
            foreach ($this->dbHandler->query($this->typeAdapter->show_triggers($this->dbName)) as $row) {
470
                array_push($this->triggers, $row['Trigger']);
471
            }
472
        }
473
474
        // Listing all procedures from database
475
        if ($this->dumpSettings['routines']) {
@@ 475-479 (lines=5) @@
472
        }
473
474
        // Listing all procedures from database
475
        if ($this->dumpSettings['routines']) {
476
            foreach ($this->dbHandler->query($this->typeAdapter->show_procedures($this->dbName)) as $row) {
477
                array_push($this->procedures, $row['procedure_name']);
478
            }
479
        }
480
    }
481
482
    /**