Code Duplication    Length = 7-7 lines in 2 locations

src/CTe/Dacce.php 1 location

@@ 571-577 (lines=7) @@
568
     * @param  string $printer
569
     * @return mixed
570
     */
571
    public function printDACCE($nome = '', $destino = 'I', $printer = '')
572
    {
573
        if ($this->pdf == null) {
574
            $this->pBuildDACCE();
575
        }
576
        return $this->pdf->Output($nome, $destino);
577
    }
578
}
579

src/NFe/Dacce.php 1 location

@@ 529-535 (lines=7) @@
526
     * @param  string $printer
527
     * @return mixed
528
     */
529
    public function printDACCE($nome = '', $destino = 'I', $printer = '')
530
    {
531
        if ($this->pdf == null) {
532
            $this->pBuildDACCE();
533
        }
534
        return $this->pdf->Output($nome, $destino);
535
    }
536
}
537