Code Duplication    Length = 5-5 lines in 2 locations

src/Ifsnop/Mysqldump/Mysqldump.php 2 locations

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