Code Duplication    Length = 36-36 lines in 2 locations

src/Factories/EvtMovOpFin.php 1 location

@@ 724-759 (lines=36) @@
721
                    }
722
                }
723
                
724
                if (!empty($p->infonascimento)) {
725
                    $in = $p->infonascimento;
726
                    $InfoNascimento = $this->dom->createElement("InfoNascimento");
727
                    $this->dom->addChild(
728
                        $InfoNascimento,
729
                        "Municipio",
730
                        !empty($in->municipio) ? $in->municipio : null,
731
                        false
732
                    );
733
                    $this->dom->addChild(
734
                        $InfoNascimento,
735
                        "Bairro",
736
                        !empty($in->bairro) ? $in->bairro : null,
737
                        false
738
                    );
739
                    if (!empty($in->pais)) {
740
                        $PaisNasc = $this->dom->createElement("PaisNasc");
741
                        $this->dom->addChild(
742
                            $PaisNasc,
743
                            "Pais",
744
                            $in->pais,
745
                            false
746
                        );
747
                        $InfoNascimento->appendChild($PaisNasc);
748
                    } elseif (!empty($in->antigonomepais)) {
749
                        $PaisNasc = $this->dom->createElement("PaisNasc");
750
                        $this->dom->addChild(
751
                            $PaisNasc,
752
                            "AntigoNomePais",
753
                            $in->antigonomepais,
754
                            false
755
                        );
756
                        $InfoNascimento->appendChild($PaisNasc);
757
                    }
758
                    $Proprietarios->appendChild($InfoNascimento);
759
                }
760
                
761
                foreach ($p->reportavel as $r) {
762
                    $Reportavel = $this->dom->createElement("Reportavel");

src/Factories/EvtMovOpFinAnual.php 1 location

@@ 732-767 (lines=36) @@
729
                    false
730
                );
731
                
732
                if (!empty($p->infonascimento)) {
733
                    $in = $p->infonascimento;
734
                    $InfoNascimento = $this->dom->createElement("InfoNascimento");
735
                    $this->dom->addChild(
736
                        $InfoNascimento,
737
                        "Municipio",
738
                        !empty($in->municipio) ? $in->municipio : null,
739
                        false
740
                    );
741
                    $this->dom->addChild(
742
                        $InfoNascimento,
743
                        "Bairro",
744
                        !empty($in->bairro) ? $in->bairro : null,
745
                        false
746
                    );
747
                    if (!empty($in->pais)) {
748
                        $PaisNasc = $this->dom->createElement("PaisNasc");
749
                        $this->dom->addChild(
750
                            $PaisNasc,
751
                            "Pais",
752
                            $in->pais,
753
                            false
754
                        );
755
                        $InfoNascimento->appendChild($PaisNasc);
756
                    } elseif (!empty($in->antigonomepais)) {
757
                        $PaisNasc = $this->dom->createElement("PaisNasc");
758
                        $this->dom->addChild(
759
                            $PaisNasc,
760
                            "AntigoNomePais",
761
                            $in->antigonomepais,
762
                            false
763
                        );
764
                        $InfoNascimento->appendChild($PaisNasc);
765
                    }
766
                    $Proprietarios->appendChild($InfoNascimento);
767
                }
768
                
769
                
770
                foreach ($p->reportavel as $r) {