repo
stringlengths
7
63
file_url
stringlengths
81
284
file_path
stringlengths
5
200
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:02:33
2026-01-05 05:24:06
truncated
bool
2 classes
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/PagosAExtranjeros10/NoBeneficiario.php
src/CfdiUtils/Elements/PagosAExtranjeros10/NoBeneficiario.php
<?php namespace CfdiUtils\Elements\PagosAExtranjeros10; use CfdiUtils\Elements\Common\AbstractElement; class NoBeneficiario extends AbstractElement { public function getElementName(): string { return 'pagosaextranjeros:NoBeneficiario'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/PagosAExtranjeros10/Pagosaextranjeros.php
src/CfdiUtils/Elements/PagosAExtranjeros10/Pagosaextranjeros.php
<?php namespace CfdiUtils\Elements\PagosAExtranjeros10; use CfdiUtils\Elements\Common\AbstractElement; class Pagosaextranjeros extends AbstractElement { public function getElementName(): string { return 'pagosaextranjeros:Pagosaextranjeros'; } public function getNoBeneficiario(): NoBeneficiario { return $this->helperGetOrAdd(new NoBeneficiario()); } public function addNoBeneficiario(array $attributes = []): NoBeneficiario { $noBeneficiario = $this->getNoBeneficiario(); $noBeneficiario->addAttributes($attributes); return $noBeneficiario; } public function getBeneficiario(): Beneficiario { return $this->helperGetOrAdd(new Beneficiario()); } public function addBeneficiario(array $attributes = []): Beneficiario { $beneficiario = $this->getBeneficiario(); $beneficiario->addAttributes($attributes); return $beneficiario; } public function getChildrenOrder(): array { return [ 'pagosaextranjeros:NoBeneficiario', 'pagosaextranjeros:Beneficiario', ]; } public function getFixedAttributes(): array { return [ 'xmlns:pagosaextranjeros' => 'http://www.sat.gob.mx/esquemas/retencionpago/1/pagosaextranjeros', 'xsi:schemaLocation' => vsprintf('%s %s', [ 'http://www.sat.gob.mx/esquemas/retencionpago/1/pagosaextranjeros', 'http://www.sat.gob.mx/esquemas/retencionpago/1/pagosaextranjeros/pagosaextranjeros.xsd', ]), 'Version' => '1.0', ]; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/ImpLocal10/RetencionesLocales.php
src/CfdiUtils/Elements/ImpLocal10/RetencionesLocales.php
<?php namespace CfdiUtils\Elements\ImpLocal10; use CfdiUtils\Elements\Common\AbstractElement; class RetencionesLocales extends AbstractElement { public function getElementName(): string { return 'implocal:RetencionesLocales'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/ImpLocal10/TrasladosLocales.php
src/CfdiUtils/Elements/ImpLocal10/TrasladosLocales.php
<?php namespace CfdiUtils\Elements\ImpLocal10; use CfdiUtils\Elements\Common\AbstractElement; class TrasladosLocales extends AbstractElement { public function getElementName(): string { return 'implocal:TrasladosLocales'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/ImpLocal10/ImpuestosLocales.php
src/CfdiUtils/Elements/ImpLocal10/ImpuestosLocales.php
<?php namespace CfdiUtils\Elements\ImpLocal10; use CfdiUtils\Elements\Common\AbstractElement; class ImpuestosLocales extends AbstractElement { public function addRetencionLocal(array $attributes = []): RetencionesLocales { $retencion = new RetencionesLocales($attributes); $this->addChild($retencion); return $retencion; } public function addTrasladoLocal(array $attributes = []): TrasladosLocales { $traslado = new TrasladosLocales($attributes); $this->addChild($traslado); return $traslado; } public function getElementName(): string { return 'implocal:ImpuestosLocales'; } public function getChildrenOrder(): array { return ['implocal:RetencionesLocales', 'implocal:TrasladosLocales']; } public function getFixedAttributes(): array { return [ 'xmlns:implocal' => 'http://www.sat.gob.mx/implocal', 'xsi:schemaLocation' => 'http://www.sat.gob.mx/implocal' . ' http://www.sat.gob.mx/sitio_internet/cfd/implocal/implocal.xsd', 'version' => '1.0', ]; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Common/AbstractElement.php
src/CfdiUtils/Elements/Common/AbstractElement.php
<?php namespace CfdiUtils\Elements\Common; use CfdiUtils\Nodes\Node; abstract class AbstractElement extends Node implements ElementInterface { public function __construct(array $attributes = [], array $children = []) { parent::__construct($this->getElementName(), $this->getFixedAttributes() + $attributes, $children); $this->children()->setOrder($this->getChildrenOrder()); } public function getFixedAttributes(): array { return []; } public function getChildrenOrder(): array { return []; } protected function helperGetOrAdd(ElementInterface $element) { $retrieved = $this->searchNode($element->getElementName()); if (null !== $retrieved) { return $retrieved; } $this->addChild($element); return $element; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Common/ElementInterface.php
src/CfdiUtils/Elements/Common/ElementInterface.php
<?php namespace CfdiUtils\Elements\Common; use CfdiUtils\Nodes\NodeInterface; interface ElementInterface extends NodeInterface { public function getElementName(): string; public function getFixedAttributes(): array; public function getChildrenOrder(): array; }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Iedu10/InstEducativas.php
src/CfdiUtils/Elements/Iedu10/InstEducativas.php
<?php namespace CfdiUtils\Elements\Iedu10; use CfdiUtils\Elements\Common\AbstractElement; class InstEducativas extends AbstractElement { public function getElementName(): string { return 'iedu:instEducativas'; } public function getFixedAttributes(): array { return [ 'xmlns:iedu' => 'http://www.sat.gob.mx/iedu', 'xsi:schemaLocation' => 'http://www.sat.gob.mx/iedu' . ' http://www.sat.gob.mx/sitio_internet/cfd/iedu/iedu.xsd', 'version' => '1.0', ]; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/PlataformasTecnologicas10/ContribucionGubernamental.php
src/CfdiUtils/Elements/PlataformasTecnologicas10/ContribucionGubernamental.php
<?php namespace CfdiUtils\Elements\PlataformasTecnologicas10; use CfdiUtils\Elements\Common\AbstractElement; class ContribucionGubernamental extends AbstractElement { public function getElementName(): string { return 'plataformasTecnologicas:ContribucionGubernamental'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/PlataformasTecnologicas10/ComisionDelServicio.php
src/CfdiUtils/Elements/PlataformasTecnologicas10/ComisionDelServicio.php
<?php namespace CfdiUtils\Elements\PlataformasTecnologicas10; use CfdiUtils\Elements\Common\AbstractElement; class ComisionDelServicio extends AbstractElement { public function getElementName(): string { return 'plataformasTecnologicas:ComisionDelServicio'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/PlataformasTecnologicas10/ImpuestosTrasladadosdelServicio.php
src/CfdiUtils/Elements/PlataformasTecnologicas10/ImpuestosTrasladadosdelServicio.php
<?php namespace CfdiUtils\Elements\PlataformasTecnologicas10; use CfdiUtils\Elements\Common\AbstractElement; class ImpuestosTrasladadosdelServicio extends AbstractElement { public function getElementName(): string { return 'plataformasTecnologicas:ImpuestosTrasladadosdelServicio'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/PlataformasTecnologicas10/Servicios.php
src/CfdiUtils/Elements/PlataformasTecnologicas10/Servicios.php
<?php namespace CfdiUtils\Elements\PlataformasTecnologicas10; use CfdiUtils\Elements\Common\AbstractElement; class Servicios extends AbstractElement { public function getElementName(): string { return 'plataformasTecnologicas:Servicios'; } public function addDetallesDelServicio(array $attributes = []): DetallesDelServicio { $subject = new DetallesDelServicio($attributes); $this->addChild($subject); return $subject; } public function multiDetallesDelServicio(array ...$elementAttributes): self { foreach ($elementAttributes as $attributes) { $this->addDetallesDelServicio($attributes); } return $this; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/PlataformasTecnologicas10/ServiciosPlataformasTecnologicas.php
src/CfdiUtils/Elements/PlataformasTecnologicas10/ServiciosPlataformasTecnologicas.php
<?php namespace CfdiUtils\Elements\PlataformasTecnologicas10; use CfdiUtils\Elements\Common\AbstractElement; class ServiciosPlataformasTecnologicas extends AbstractElement { public function getElementName(): string { return 'plataformasTecnologicas:ServiciosPlataformasTecnologicas'; } public function getFixedAttributes(): array { return [ 'xmlns:plataformasTecnologicas' => 'http://www.sat.gob.mx/esquemas/retencionpago/1' . '/PlataformasTecnologicas10', 'xsi:schemaLocation' => 'http://www.sat.gob.mx/esquemas/retencionpago/1/PlataformasTecnologicas10' . ' http://www.sat.gob.mx/esquemas/retencionpago/1/PlataformasTecnologicas10' . '/ServiciosPlataformasTecnologicas10.xsd', 'Version' => '1.0', ]; } public function getServicios(): Servicios { return $this->helperGetOrAdd(new Servicios()); } public function addServicios(array $attributes = []): Servicios { $subject = $this->getServicios(); $subject->addAttributes($attributes); return $subject; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/PlataformasTecnologicas10/DetallesDelServicio.php
src/CfdiUtils/Elements/PlataformasTecnologicas10/DetallesDelServicio.php
<?php namespace CfdiUtils\Elements\PlataformasTecnologicas10; use CfdiUtils\Elements\Common\AbstractElement; class DetallesDelServicio extends AbstractElement { public function getElementName(): string { return 'plataformasTecnologicas:DetallesDelServicio'; } public function getChildrenOrder(): array { return [ 'plataformasTecnologicas:ImpuestosTrasladadosdelServicio', 'plataformasTecnologicas:ContribucionGubernamental', 'plataformasTecnologicas:ComisionDelServicio', ]; } public function getImpuestosTrasladadosdelServicio(): ImpuestosTrasladadosdelServicio { return $this->helperGetOrAdd(new ImpuestosTrasladadosdelServicio()); } public function addImpuestosTrasladadosdelServicio(array $attributes = []): ImpuestosTrasladadosdelServicio { $subject = $this->getImpuestosTrasladadosdelServicio(); $subject->addAttributes($attributes); return $subject; } public function getContribucionGubernamental(): ContribucionGubernamental { return $this->helperGetOrAdd(new ContribucionGubernamental()); } public function addContribucionGubernamental(array $attributes = []): ContribucionGubernamental { $subject = $this->getContribucionGubernamental(); $subject->addAttributes($attributes); return $subject; } public function getComisionDelServicio(): ComisionDelServicio { return $this->helperGetOrAdd(new ComisionDelServicio()); } public function addComisionDelServicio(array $attributes = []): ComisionDelServicio { $subject = $this->getComisionDelServicio(); $subject->addAttributes($attributes); return $subject; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/CartaPorte30/Carro.php
src/CfdiUtils/Elements/CartaPorte30/Carro.php
<?php namespace CfdiUtils\Elements\CartaPorte30; use CfdiUtils\Elements\Common\AbstractElement; class Carro extends AbstractElement { public function getElementName(): string { return 'cartaporte30:Carro'; } public function addContenedor(array $attributes = []): Contenedor { $subject = new Contenedor($attributes); $this->addChild($subject); return $subject; } public function multiContenedor(array ...$elementAttributes): self { foreach ($elementAttributes as $attributes) { $this->addContenedor($attributes); } return $this; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/CartaPorte30/Ubicacion.php
src/CfdiUtils/Elements/CartaPorte30/Ubicacion.php
<?php namespace CfdiUtils\Elements\CartaPorte30; use CfdiUtils\Elements\Common\AbstractElement; class Ubicacion extends AbstractElement { public function getElementName(): string { return 'cartaporte30:Ubicacion'; } public function getDomicilio(): Domicilio { return $this->helperGetOrAdd(new Domicilio()); } public function addDomicilio(array $attributes = []): Domicilio { $subject = $this->getDomicilio(); $subject->addAttributes($attributes); return $subject; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/CartaPorte30/Domicilio.php
src/CfdiUtils/Elements/CartaPorte30/Domicilio.php
<?php namespace CfdiUtils\Elements\CartaPorte30; use CfdiUtils\Elements\Common\AbstractElement; class Domicilio extends AbstractElement { public function getElementName(): string { return 'cartaporte30:Domicilio'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/CartaPorte30/Remolques.php
src/CfdiUtils/Elements/CartaPorte30/Remolques.php
<?php namespace CfdiUtils\Elements\CartaPorte30; use CfdiUtils\Elements\Common\AbstractElement; class Remolques extends AbstractElement { public function getElementName(): string { return 'cartaporte30:Remolques'; } public function addRemolque(array $attributes = []): Remolque { $subject = new Remolque($attributes); $this->addChild($subject); return $subject; } public function multiRemolque(array ...$elementAttributes): self { foreach ($elementAttributes as $attributes) { $this->addRemolque($attributes); } return $this; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/CartaPorte30/CantidadTransporta.php
src/CfdiUtils/Elements/CartaPorte30/CantidadTransporta.php
<?php namespace CfdiUtils\Elements\CartaPorte30; use CfdiUtils\Elements\Common\AbstractElement; class CantidadTransporta extends AbstractElement { public function getElementName(): string { return 'cartaporte30:CantidadTransporta'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/CartaPorte30/PartesTransporte.php
src/CfdiUtils/Elements/CartaPorte30/PartesTransporte.php
<?php namespace CfdiUtils\Elements\CartaPorte30; use CfdiUtils\Elements\Common\AbstractElement; class PartesTransporte extends AbstractElement { public function getElementName(): string { return 'cartaporte30:PartesTransporte'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/CartaPorte30/TransporteFerroviario.php
src/CfdiUtils/Elements/CartaPorte30/TransporteFerroviario.php
<?php namespace CfdiUtils\Elements\CartaPorte30; use CfdiUtils\Elements\Common\AbstractElement; class TransporteFerroviario extends AbstractElement { public function getElementName(): string { return 'cartaporte30:TransporteFerroviario'; } public function getChildrenOrder(): array { return [ 'cartaporte30:DerechosDePaso', 'cartaporte30:Carro', ]; } public function addDerechosDePaso(array $attributes = []): DerechosDePaso { $subject = new DerechosDePaso($attributes); $this->addChild($subject); return $subject; } public function multiDerechosDePaso(array ...$elementAttributes): self { foreach ($elementAttributes as $attributes) { $this->addDerechosDePaso($attributes); } return $this; } public function addCarro(array $attributes = []): Carro { $subject = new Carro($attributes); $this->addChild($subject); return $subject; } public function multiCarro(array ...$elementAttributes): self { foreach ($elementAttributes as $attributes) { $this->addCarro($attributes); } return $this; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/CartaPorte30/DerechosDePaso.php
src/CfdiUtils/Elements/CartaPorte30/DerechosDePaso.php
<?php namespace CfdiUtils\Elements\CartaPorte30; use CfdiUtils\Elements\Common\AbstractElement; class DerechosDePaso extends AbstractElement { public function getElementName(): string { return 'cartaporte30:DerechosDePaso'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/CartaPorte30/CartaPorte.php
src/CfdiUtils/Elements/CartaPorte30/CartaPorte.php
<?php namespace CfdiUtils\Elements\CartaPorte30; use CfdiUtils\Elements\Common\AbstractElement; class CartaPorte extends AbstractElement { public function getElementName(): string { return 'cartaporte30:CartaPorte'; } public function getChildrenOrder(): array { return [ 'cartaporte30:Ubicaciones', 'cartaporte30:Mercancias', 'cartaporte30:FiguraTransporte', ]; } public function getFixedAttributes(): array { return [ 'xmlns:cartaporte30' => 'http://www.sat.gob.mx/CartaPorte30', 'xsi:schemaLocation' => 'http://www.sat.gob.mx/CartaPorte30' . ' http://www.sat.gob.mx/sitio_internet/cfd/CartaPorte/CartaPorte30.xsd', 'Version' => '3.0', ]; } public function getUbicaciones(): Ubicaciones { return $this->helperGetOrAdd(new Ubicaciones()); } public function addUbicaciones(array $attributes = []): Ubicaciones { $subject = $this->getUbicaciones(); $subject->addAttributes($attributes); return $subject; } public function getMercancias(): Mercancias { return $this->helperGetOrAdd(new Mercancias()); } public function addMercancias(array $attributes = []): Mercancias { $subject = $this->getMercancias(); $subject->addAttributes($attributes); return $subject; } public function getFiguraTransporte(): FiguraTransporte { return $this->helperGetOrAdd(new FiguraTransporte()); } public function addFiguraTransporte(array $attributes = []): FiguraTransporte { $subject = $this->getFiguraTransporte(); $subject->addAttributes($attributes); return $subject; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/CartaPorte30/Mercancias.php
src/CfdiUtils/Elements/CartaPorte30/Mercancias.php
<?php namespace CfdiUtils\Elements\CartaPorte30; use CfdiUtils\Elements\Common\AbstractElement; class Mercancias extends AbstractElement { public function getElementName(): string { return 'cartaporte30:Mercancias'; } public function getChildrenOrder(): array { return [ 'cartaporte30:Mercancia', 'cartaporte30:Autotransporte', 'cartaporte30:TransporteMaritimo', 'cartaporte30:TransporteAereo', 'cartaporte30:TransporteFerroviario', ]; } public function addMercancia(array $attributes = []): Mercancia { $subject = new Mercancia($attributes); $this->addChild($subject); return $subject; } public function multiMercancia(array ...$elementAttributes): self { foreach ($elementAttributes as $attributes) { $this->addMercancia($attributes); } return $this; } public function getAutotransporte(): Autotransporte { return $this->helperGetOrAdd(new Autotransporte()); } public function addAutotransporte(array $attributes = []): Autotransporte { $subject = $this->getAutotransporte(); $subject->addAttributes($attributes); return $subject; } public function getTransporteMaritimo(): TransporteMaritimo { return $this->helperGetOrAdd(new TransporteMaritimo()); } public function addTransporteMaritimo(array $attributes = []): TransporteMaritimo { $subject = $this->getTransporteMaritimo(); $subject->addAttributes($attributes); return $subject; } public function getTransporteAereo(): TransporteAereo { return $this->helperGetOrAdd(new TransporteAereo()); } public function addTransporteAereo(array $attributes = []): TransporteAereo { $subject = $this->getTransporteAereo(); $subject->addAttributes($attributes); return $subject; } public function getTransporteFerroviario(): TransporteFerroviario { return $this->helperGetOrAdd(new TransporteFerroviario()); } public function addTransporteFerroviario(array $attributes = []): TransporteFerroviario { $subject = $this->getTransporteFerroviario(); $subject->addAttributes($attributes); return $subject; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/CartaPorte30/Remolque.php
src/CfdiUtils/Elements/CartaPorte30/Remolque.php
<?php namespace CfdiUtils\Elements\CartaPorte30; use CfdiUtils\Elements\Common\AbstractElement; class Remolque extends AbstractElement { public function getElementName(): string { return 'cartaporte30:Remolque'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/CartaPorte30/Autotransporte.php
src/CfdiUtils/Elements/CartaPorte30/Autotransporte.php
<?php namespace CfdiUtils\Elements\CartaPorte30; use CfdiUtils\Elements\Common\AbstractElement; class Autotransporte extends AbstractElement { public function getElementName(): string { return 'cartaporte30:Autotransporte'; } public function getChildrenOrder(): array { return [ 'cartaporte30:IdentificacionVehicular', 'cartaporte30:Seguros', 'cartaporte30:Remolques', ]; } public function getIdentificacionVehicular(): IdentificacionVehicular { return $this->helperGetOrAdd(new IdentificacionVehicular()); } public function addIdentificacionVehicular(array $attributes = []): IdentificacionVehicular { $subject = $this->getIdentificacionVehicular(); $subject->addAttributes($attributes); return $subject; } public function getSeguros(): Seguros { return $this->helperGetOrAdd(new Seguros()); } public function addSeguros(array $attributes = []): Seguros { $subject = $this->getSeguros(); $subject->addAttributes($attributes); return $subject; } public function getRemolques(): Remolques { return $this->helperGetOrAdd(new Remolques()); } public function addRemolques(array $attributes = []): Remolques { $subject = $this->getRemolques(); $subject->addAttributes($attributes); return $subject; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/CartaPorte30/Ubicaciones.php
src/CfdiUtils/Elements/CartaPorte30/Ubicaciones.php
<?php namespace CfdiUtils\Elements\CartaPorte30; use CfdiUtils\Elements\Common\AbstractElement; class Ubicaciones extends AbstractElement { public function getElementName(): string { return 'cartaporte30:Ubicaciones'; } public function addUbicacion(array $attributes = []): Ubicacion { $subject = new Ubicacion($attributes); $this->addChild($subject); return $subject; } public function multiUbicacion(array ...$elementAttributes): self { foreach ($elementAttributes as $attributes) { $this->addUbicacion($attributes); } return $this; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/CartaPorte30/Seguros.php
src/CfdiUtils/Elements/CartaPorte30/Seguros.php
<?php namespace CfdiUtils\Elements\CartaPorte30; use CfdiUtils\Elements\Common\AbstractElement; class Seguros extends AbstractElement { public function getElementName(): string { return 'cartaporte30:Seguros'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/CartaPorte30/DetalleMercancia.php
src/CfdiUtils/Elements/CartaPorte30/DetalleMercancia.php
<?php namespace CfdiUtils\Elements\CartaPorte30; use CfdiUtils\Elements\Common\AbstractElement; class DetalleMercancia extends AbstractElement { public function getElementName(): string { return 'cartaporte30:DetalleMercancia'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/CartaPorte30/RemolquesCCP.php
src/CfdiUtils/Elements/CartaPorte30/RemolquesCCP.php
<?php namespace CfdiUtils\Elements\CartaPorte30; use CfdiUtils\Elements\Common\AbstractElement; class RemolquesCCP extends AbstractElement { public function getElementName(): string { return 'cartaporte30:RemolquesCCP'; } public function addRemolqueCCP(array $attributes = []): RemolqueCCP { $subject = new RemolqueCCP($attributes); $this->addChild($subject); return $subject; } public function multiRemolqueCCP(array ...$elementAttributes): self { foreach ($elementAttributes as $attributes) { $this->addRemolqueCCP($attributes); } return $this; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/CartaPorte30/GuiasIdentificacion.php
src/CfdiUtils/Elements/CartaPorte30/GuiasIdentificacion.php
<?php namespace CfdiUtils\Elements\CartaPorte30; use CfdiUtils\Elements\Common\AbstractElement; class GuiasIdentificacion extends AbstractElement { public function getElementName(): string { return 'cartaporte30:GuiasIdentificacion'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/CartaPorte30/FiguraTransporte.php
src/CfdiUtils/Elements/CartaPorte30/FiguraTransporte.php
<?php namespace CfdiUtils\Elements\CartaPorte30; use CfdiUtils\Elements\Common\AbstractElement; class FiguraTransporte extends AbstractElement { public function getElementName(): string { return 'cartaporte30:FiguraTransporte'; } public function addTiposFigura(array $attributes = []): TiposFigura { $subject = new TiposFigura($attributes); $this->addChild($subject); return $subject; } public function multiTiposFigura(array ...$elementAttributes): self { foreach ($elementAttributes as $attributes) { $this->addTiposFigura($attributes); } return $this; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/CartaPorte30/IdentificacionVehicular.php
src/CfdiUtils/Elements/CartaPorte30/IdentificacionVehicular.php
<?php namespace CfdiUtils\Elements\CartaPorte30; use CfdiUtils\Elements\Common\AbstractElement; class IdentificacionVehicular extends AbstractElement { public function getElementName(): string { return 'cartaporte30:IdentificacionVehicular'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/CartaPorte30/Contenedor.php
src/CfdiUtils/Elements/CartaPorte30/Contenedor.php
<?php namespace CfdiUtils\Elements\CartaPorte30; use CfdiUtils\Elements\Common\AbstractElement; class Contenedor extends AbstractElement { public function getElementName(): string { return 'cartaporte30:Contenedor'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/CartaPorte30/DocumentacionAduanera.php
src/CfdiUtils/Elements/CartaPorte30/DocumentacionAduanera.php
<?php namespace CfdiUtils\Elements\CartaPorte30; use CfdiUtils\Elements\Common\AbstractElement; class DocumentacionAduanera extends AbstractElement { public function getElementName(): string { return 'cartaporte30:DocumentacionAduanera'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/CartaPorte30/RemolqueCCP.php
src/CfdiUtils/Elements/CartaPorte30/RemolqueCCP.php
<?php namespace CfdiUtils\Elements\CartaPorte30; use CfdiUtils\Elements\Common\AbstractElement; class RemolqueCCP extends AbstractElement { public function getElementName(): string { return 'cartaporte30:RemolqueCCP'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/CartaPorte30/Mercancia.php
src/CfdiUtils/Elements/CartaPorte30/Mercancia.php
<?php namespace CfdiUtils\Elements\CartaPorte30; use CfdiUtils\Elements\Common\AbstractElement; class Mercancia extends AbstractElement { public function getElementName(): string { return 'cartaporte30:Mercancia'; } public function getChildrenOrder(): array { return [ 'cartaporte30:DocumentacionAduanera', 'cartaporte30:GuiasIdentificacion', 'cartaporte30:CantidadTransporta', 'cartaporte30:DetalleMercancia', ]; } public function addDocumentacionAduanera(array $attributes = []): DocumentacionAduanera { $subject = new DocumentacionAduanera($attributes); $this->addChild($subject); return $subject; } public function multiDocumentacionAduanera(array ...$elementAttributes): self { foreach ($elementAttributes as $attributes) { $this->addDocumentacionAduanera($attributes); } return $this; } public function addGuiasIdentificacion(array $attributes = []): GuiasIdentificacion { $subject = new GuiasIdentificacion($attributes); $this->addChild($subject); return $subject; } public function multiGuiasIdentificacion(array ...$elementAttributes): self { foreach ($elementAttributes as $attributes) { $this->addGuiasIdentificacion($attributes); } return $this; } public function addCantidadTransporta(array $attributes = []): CantidadTransporta { $subject = new CantidadTransporta($attributes); $this->addChild($subject); return $subject; } public function multiCantidadTransporta(array ...$elementAttributes): self { foreach ($elementAttributes as $attributes) { $this->addCantidadTransporta($attributes); } return $this; } public function getDetalleMercancia(): DetalleMercancia { return $this->helperGetOrAdd(new DetalleMercancia()); } public function addDetalleMercancia(array $attributes = []): DetalleMercancia { $subject = $this->getDetalleMercancia(); $subject->addAttributes($attributes); return $subject; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/CartaPorte30/TiposFigura.php
src/CfdiUtils/Elements/CartaPorte30/TiposFigura.php
<?php namespace CfdiUtils\Elements\CartaPorte30; use CfdiUtils\Elements\Common\AbstractElement; class TiposFigura extends AbstractElement { public function getElementName(): string { return 'cartaporte30:TiposFigura'; } public function getChildrenOrder(): array { return [ 'cartaporte30:PartesTransporte', 'cartaporte30:Domicilio', ]; } public function addPartesTransporte(array $attributes = []): PartesTransporte { $subject = new PartesTransporte($attributes); $this->addChild($subject); return $subject; } public function multiPartesTransporte(array ...$elementAttributes): self { foreach ($elementAttributes as $attributes) { $this->addPartesTransporte($attributes); } return $this; } public function getDomicilio(): Domicilio { return $this->helperGetOrAdd(new Domicilio()); } public function addDomicilio(array $attributes = []): Domicilio { $subject = $this->getDomicilio(); $subject->addAttributes($attributes); return $subject; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/CartaPorte30/TransporteAereo.php
src/CfdiUtils/Elements/CartaPorte30/TransporteAereo.php
<?php namespace CfdiUtils\Elements\CartaPorte30; use CfdiUtils\Elements\Common\AbstractElement; class TransporteAereo extends AbstractElement { public function getElementName(): string { return 'cartaporte30:TransporteAereo'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/CartaPorte30/TransporteMaritimo.php
src/CfdiUtils/Elements/CartaPorte30/TransporteMaritimo.php
<?php namespace CfdiUtils\Elements\CartaPorte30; use CfdiUtils\Elements\Common\AbstractElement; class TransporteMaritimo extends AbstractElement { public function getElementName(): string { return 'cartaporte30:TransporteMaritimo'; } public function getChildrenOrder(): array { return [ 'cartaporte30:Contenedor', 'cartaporte30:RemolquesCCP', ]; } public function addContenedor(array $attributes = []): Contenedor { $subject = new Contenedor($attributes); $this->addChild($subject); return $subject; } public function multiContenedor(array ...$elementAttributes): self { foreach ($elementAttributes as $attributes) { $this->addContenedor($attributes); } return $this; } public function getRemolquesCCP(): RemolquesCCP { return $this->helperGetOrAdd(new RemolquesCCP()); } public function addRemolquesCCP(array $attributes = []): RemolquesCCP { $subject = $this->getRemolquesCCP(); $subject->addAttributes($attributes); return $subject; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Ine11/Ine.php
src/CfdiUtils/Elements/Ine11/Ine.php
<?php namespace CfdiUtils\Elements\Ine11; use CfdiUtils\Elements\Common\AbstractElement; class Ine extends AbstractElement { public function getElementName(): string { return 'ine:INE'; } public function getFixedAttributes(): array { return [ 'xmlns:ine' => 'http://www.sat.gob.mx/ine', 'xsi:schemaLocation' => 'http://www.sat.gob.mx/ine' . ' http://www.sat.gob.mx/sitio_internet/cfd/ine/ine11.xsd', 'Version' => '1.1', ]; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Tfd11/TimbreFiscalDigital.php
src/CfdiUtils/Elements/Tfd11/TimbreFiscalDigital.php
<?php namespace CfdiUtils\Elements\Tfd11; use CfdiUtils\Elements\Common\AbstractElement; class TimbreFiscalDigital extends AbstractElement { public function getElementName(): string { return 'tfd:TimbreFiscalDigital'; } public function getFixedAttributes(): array { return [ 'xmlns:tfd' => 'http://www.sat.gob.mx/TimbreFiscalDigital', 'xsi:schemaLocation' => 'http://www.sat.gob.mx/TimbreFiscalDigital' . ' http://www.sat.gob.mx/sitio_internet/cfd/TimbreFiscalDigital/TimbreFiscalDigitalv11.xsd', 'Version' => '1.1', ]; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/ConsumoDeCombustibles11/Determinado.php
src/CfdiUtils/Elements/ConsumoDeCombustibles11/Determinado.php
<?php namespace CfdiUtils\Elements\ConsumoDeCombustibles11; use CfdiUtils\Elements\Common\AbstractElement; class Determinado extends AbstractElement { public function getElementName(): string { return 'consumodecombustibles11:Determinado'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/ConsumoDeCombustibles11/ConceptoConsumoDeCombustibles.php
src/CfdiUtils/Elements/ConsumoDeCombustibles11/ConceptoConsumoDeCombustibles.php
<?php namespace CfdiUtils\Elements\ConsumoDeCombustibles11; use CfdiUtils\Elements\Common\AbstractElement; class ConceptoConsumoDeCombustibles extends AbstractElement { public function getElementName(): string { return 'consumodecombustibles11:ConceptoConsumoDeCombustibles'; } public function getDeterminados(): Determinados { return $this->helperGetOrAdd(new Determinados()); } public function addDeterminados(array $attributes = []): Determinados { $subject = $this->getDeterminados(); $subject->addAttributes($attributes); return $subject; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/ConsumoDeCombustibles11/ConsumoDeCombustibles.php
src/CfdiUtils/Elements/ConsumoDeCombustibles11/ConsumoDeCombustibles.php
<?php namespace CfdiUtils\Elements\ConsumoDeCombustibles11; use CfdiUtils\Elements\Common\AbstractElement; class ConsumoDeCombustibles extends AbstractElement { public function getElementName(): string { return 'consumodecombustibles11:ConsumoDeCombustibles'; } public function getFixedAttributes(): array { return [ 'xmlns:consumodecombustibles11' => 'http://www.sat.gob.mx/ConsumoDeCombustibles11', 'xsi:schemaLocation' => 'http://www.sat.gob.mx/ConsumoDeCombustibles11' . ' http://www.sat.gob.mx/sitio_internet/cfd/consumodecombustibles/consumodeCombustibles11.xsd', 'version' => '1.1', ]; } public function getConceptos(): Conceptos { return $this->helperGetOrAdd(new Conceptos()); } public function addConceptos(array $attributes = []): Conceptos { $subject = $this->getConceptos(); $subject->addAttributes($attributes); return $subject; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/ConsumoDeCombustibles11/Conceptos.php
src/CfdiUtils/Elements/ConsumoDeCombustibles11/Conceptos.php
<?php namespace CfdiUtils\Elements\ConsumoDeCombustibles11; use CfdiUtils\Elements\Common\AbstractElement; class Conceptos extends AbstractElement { public function getElementName(): string { return 'consumodecombustibles11:Conceptos'; } public function addConceptoConsumoDeCombustibles(array $attributes = []): ConceptoConsumoDeCombustibles { $subject = new ConceptoConsumoDeCombustibles($attributes); $this->addChild($subject); return $subject; } public function multiConceptoConsumoDeCombustibles(array ...$elementAttributes): self { foreach ($elementAttributes as $attributes) { $this->addConceptoConsumoDeCombustibles($attributes); } return $this; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/ConsumoDeCombustibles11/Determinados.php
src/CfdiUtils/Elements/ConsumoDeCombustibles11/Determinados.php
<?php namespace CfdiUtils\Elements\ConsumoDeCombustibles11; use CfdiUtils\Elements\Common\AbstractElement; class Determinados extends AbstractElement { public function getElementName(): string { return 'consumodecombustibles11:Determinados'; } public function addDeterminado(array $attributes = []): Determinado { $subject = new Determinado($attributes); $this->addChild($subject); return $subject; } public function multiDeterminado(array ...$elementAttributes): self { foreach ($elementAttributes as $attributes) { $this->addDeterminado($attributes); } return $this; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/ParcialesConstruccion10/ParcialesConstruccion.php
src/CfdiUtils/Elements/ParcialesConstruccion10/ParcialesConstruccion.php
<?php namespace CfdiUtils\Elements\ParcialesConstruccion10; use CfdiUtils\Elements\Common\AbstractElement; class ParcialesConstruccion extends AbstractElement { public function getElementName(): string { return 'servicioparcial:parcialesconstruccion'; } public function getFixedAttributes(): array { return [ 'xmlns:servicioparcial' => 'http://www.sat.gob.mx/servicioparcialconstruccion', 'xsi:schemaLocation' => 'http://www.sat.gob.mx/servicioparcialconstruccion' . ' http://www.sat.gob.mx/sitio_internet/cfd' . '/servicioparcialconstruccion/servicioparcialconstruccion.xsd', 'Version' => '1.0', ]; } public function getInmueble(): Inmueble { return $this->helperGetOrAdd(new Inmueble()); } public function addInmueble(array $attributes = []): Inmueble { $subject = $this->getInmueble(); $subject->addAttributes($attributes); return $subject; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/ParcialesConstruccion10/Inmueble.php
src/CfdiUtils/Elements/ParcialesConstruccion10/Inmueble.php
<?php namespace CfdiUtils\Elements\ParcialesConstruccion10; use CfdiUtils\Elements\Common\AbstractElement; class Inmueble extends AbstractElement { public function getElementName(): string { return 'servicioparcial:Inmueble'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Donatarias11/Donatarias.php
src/CfdiUtils/Elements/Donatarias11/Donatarias.php
<?php namespace CfdiUtils\Elements\Donatarias11; use CfdiUtils\Elements\Common\AbstractElement; class Donatarias extends AbstractElement { public function getElementName(): string { return 'donat:Donatarias'; } public function getFixedAttributes(): array { return [ 'xmlns:donat' => 'http://www.sat.gob.mx/donat', 'xsi:schemaLocation' => 'http://www.sat.gob.mx/donat' . ' http://www.sat.gob.mx/sitio_internet/cfd/donat/donat11.xsd', 'version' => '1.1', ]; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cce11/Domicilio.php
src/CfdiUtils/Elements/Cce11/Domicilio.php
<?php namespace CfdiUtils\Elements\Cce11; use CfdiUtils\Elements\Common\AbstractElement; class Domicilio extends AbstractElement { public function getElementName(): string { return 'cce11:Domicilio'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cce11/DescripcionesEspecificas.php
src/CfdiUtils/Elements/Cce11/DescripcionesEspecificas.php
<?php namespace CfdiUtils\Elements\Cce11; use CfdiUtils\Elements\Common\AbstractElement; class DescripcionesEspecificas extends AbstractElement { public function getElementName(): string { return 'cce11:DescripcionesEspecificas'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cce11/Receptor.php
src/CfdiUtils/Elements/Cce11/Receptor.php
<?php namespace CfdiUtils\Elements\Cce11; use CfdiUtils\Elements\Cce11\Traits\DomicilioTrait; use CfdiUtils\Elements\Common\AbstractElement; class Receptor extends AbstractElement { use DomicilioTrait; public function getElementName(): string { return 'cce11:Receptor'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cce11/Propietario.php
src/CfdiUtils/Elements/Cce11/Propietario.php
<?php namespace CfdiUtils\Elements\Cce11; use CfdiUtils\Elements\Common\AbstractElement; class Propietario extends AbstractElement { public function getElementName(): string { return 'cce11:Propietario'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cce11/Mercancias.php
src/CfdiUtils/Elements/Cce11/Mercancias.php
<?php namespace CfdiUtils\Elements\Cce11; use CfdiUtils\Elements\Common\AbstractElement; class Mercancias extends AbstractElement { public function addMercancia(array $attributes = []): Mercancia { $mercancia = new Mercancia($attributes); $this->addChild($mercancia); return $mercancia; } public function getElementName(): string { return 'cce11:Mercancias'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cce11/Destinatario.php
src/CfdiUtils/Elements/Cce11/Destinatario.php
<?php namespace CfdiUtils\Elements\Cce11; use CfdiUtils\Elements\Common\AbstractElement; class Destinatario extends AbstractElement { public function addDomicilio(array $attributes = []): Domicilio { $domicilio = new Domicilio($attributes); $this->addChild($domicilio); return $domicilio; } public function getElementName(): string { return 'cce11:Destinatario'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cce11/ComercioExterior.php
src/CfdiUtils/Elements/Cce11/ComercioExterior.php
<?php namespace CfdiUtils\Elements\Cce11; use CfdiUtils\Elements\Common\AbstractElement; class ComercioExterior extends AbstractElement { public function getEmisor(): Emisor { return $this->helperGetOrAdd(new Emisor()); } public function addEmisor(array $attributes = []): Emisor { $emisor = $this->getEmisor(); $emisor->addAttributes($attributes); return $emisor; } public function getReceptor(): Receptor { return $this->helperGetOrAdd(new Receptor()); } public function addReceptor(array $attributes = []): Receptor { $receptor = $this->getReceptor(); $receptor->addAttributes($attributes); return $receptor; } public function addPropietario(array $attributes = []): Propietario { $propietario = new Propietario($attributes); $this->addChild($propietario); return $propietario; } public function addDestinatario(array $attributes = []): Destinatario { $destinatario = new Destinatario($attributes); $this->addChild($destinatario); return $destinatario; } public function getMercancias(): Mercancias { return $this->helperGetOrAdd(new Mercancias()); } public function addMercancias(array $attributes = []): Mercancias { $mercancias = $this->getMercancias(); $mercancias->addAttributes($attributes); return $mercancias; } public function addMercancia(array $attributes = []): Mercancia { return $this->getMercancias()->addMercancia($attributes); } public function getElementName(): string { return 'cce11:ComercioExterior'; } public function getChildrenOrder(): array { return [ 'cce11:Emisor', 'cce11:Propietario', 'cce11:Receptor', 'cce11:Destinatario', 'cce11:Mercancias', ]; } public function getFixedAttributes(): array { return [ 'xmlns:cce11' => 'http://www.sat.gob.mx/ComercioExterior11', 'xsi:schemaLocation' => 'http://www.sat.gob.mx/ComercioExterior11' . ' http://www.sat.gob.mx/sitio_internet/cfd/ComercioExterior11/ComercioExterior11.xsd', 'Version' => '1.1', ]; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cce11/Emisor.php
src/CfdiUtils/Elements/Cce11/Emisor.php
<?php namespace CfdiUtils\Elements\Cce11; use CfdiUtils\Elements\Cce11\Traits\DomicilioTrait; use CfdiUtils\Elements\Common\AbstractElement; class Emisor extends AbstractElement { use DomicilioTrait; public function getElementName(): string { return 'cce11:Emisor'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cce11/Mercancia.php
src/CfdiUtils/Elements/Cce11/Mercancia.php
<?php namespace CfdiUtils\Elements\Cce11; use CfdiUtils\Elements\Common\AbstractElement; class Mercancia extends AbstractElement { public function addDescripcionesEspecificas(array $attributes = []): DescripcionesEspecificas { $descripcionesEspecificas = new DescripcionesEspecificas($attributes); $this->addChild($descripcionesEspecificas); return $descripcionesEspecificas; } public function getElementName(): string { return 'cce11:Mercancia'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cce11/Traits/DomicilioTrait.php
src/CfdiUtils/Elements/Cce11/Traits/DomicilioTrait.php
<?php namespace CfdiUtils\Elements\Cce11\Traits; use CfdiUtils\Elements\Cce11\Domicilio; use CfdiUtils\Elements\Common\ElementInterface; trait DomicilioTrait { /* This method comes from AbstractElement */ abstract protected function helperGetOrAdd(ElementInterface $element); public function getDomicilio(): Domicilio { return $this->helperGetOrAdd(new Domicilio()); } public function addDomicilio(array $attributes = []): Domicilio { $domicilio = $this->getDomicilio(); $domicilio->addAttributes($attributes); return $domicilio; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/NotariosPublicos10/DatosEnajenantesCopSC.php
src/CfdiUtils/Elements/NotariosPublicos10/DatosEnajenantesCopSC.php
<?php namespace CfdiUtils\Elements\NotariosPublicos10; use CfdiUtils\Elements\Common\AbstractElement; class DatosEnajenantesCopSC extends AbstractElement { public function getElementName(): string { return 'notariospublicos:DatosEnajenantesCopSC'; } public function addDatosEnajenanteCopSC(array $attributes = []): DatosEnajenanteCopSC { $subject = new DatosEnajenanteCopSC($attributes); $this->addChild($subject); return $subject; } public function multiDatosEnajenanteCopSC(array ...$elementAttributes): self { foreach ($elementAttributes as $attributes) { $this->addDatosEnajenanteCopSC($attributes); } return $this; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/NotariosPublicos10/DescInmueble.php
src/CfdiUtils/Elements/NotariosPublicos10/DescInmueble.php
<?php namespace CfdiUtils\Elements\NotariosPublicos10; use CfdiUtils\Elements\Common\AbstractElement; class DescInmueble extends AbstractElement { public function getElementName(): string { return 'notariospublicos:DescInmueble'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/NotariosPublicos10/DatosAdquirienteCopSC.php
src/CfdiUtils/Elements/NotariosPublicos10/DatosAdquirienteCopSC.php
<?php namespace CfdiUtils\Elements\NotariosPublicos10; use CfdiUtils\Elements\Common\AbstractElement; class DatosAdquirienteCopSC extends AbstractElement { public function getElementName(): string { return 'notariospublicos:DatosAdquirienteCopSC'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/NotariosPublicos10/DatosNotario.php
src/CfdiUtils/Elements/NotariosPublicos10/DatosNotario.php
<?php namespace CfdiUtils\Elements\NotariosPublicos10; use CfdiUtils\Elements\Common\AbstractElement; class DatosNotario extends AbstractElement { public function getElementName(): string { return 'notariospublicos:DatosNotario'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/NotariosPublicos10/DatosUnAdquiriente.php
src/CfdiUtils/Elements/NotariosPublicos10/DatosUnAdquiriente.php
<?php namespace CfdiUtils\Elements\NotariosPublicos10; use CfdiUtils\Elements\Common\AbstractElement; class DatosUnAdquiriente extends AbstractElement { public function getElementName(): string { return 'notariospublicos:DatosUnAdquiriente'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/NotariosPublicos10/DatosAdquirientesCopSC.php
src/CfdiUtils/Elements/NotariosPublicos10/DatosAdquirientesCopSC.php
<?php namespace CfdiUtils\Elements\NotariosPublicos10; use CfdiUtils\Elements\Common\AbstractElement; class DatosAdquirientesCopSC extends AbstractElement { public function getElementName(): string { return 'notariospublicos:DatosAdquirientesCopSC'; } public function addDatosAdquirienteCopSC(array $attributes = []): DatosAdquirienteCopSC { $subject = new DatosAdquirienteCopSC($attributes); $this->addChild($subject); return $subject; } public function multiDatosAdquirienteCopSC(array ...$elementAttributes): self { foreach ($elementAttributes as $attributes) { $this->addDatosAdquirienteCopSC($attributes); } return $this; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/NotariosPublicos10/DatosOperacion.php
src/CfdiUtils/Elements/NotariosPublicos10/DatosOperacion.php
<?php namespace CfdiUtils\Elements\NotariosPublicos10; use CfdiUtils\Elements\Common\AbstractElement; class DatosOperacion extends AbstractElement { public function getElementName(): string { return 'notariospublicos:DatosOperacion'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/NotariosPublicos10/DatosEnajenante.php
src/CfdiUtils/Elements/NotariosPublicos10/DatosEnajenante.php
<?php namespace CfdiUtils\Elements\NotariosPublicos10; use CfdiUtils\Elements\Common\AbstractElement; class DatosEnajenante extends AbstractElement { public function getElementName(): string { return 'notariospublicos:DatosEnajenante'; } public function getChildrenOrder(): array { return [ 'notariospublicos:DatosUnEnajenante', 'notariospublicos:DatosEnajenantesCopSC', ]; } public function getDatosUnEnajenante(): DatosUnEnajenante { return $this->helperGetOrAdd(new DatosUnEnajenante()); } public function addDatosUnEnajenante(array $attributes = []): DatosUnEnajenante { $subject = $this->getDatosUnEnajenante(); $subject->addAttributes($attributes); return $subject; } public function getDatosEnajenantesCopSC(): DatosEnajenantesCopSC { return $this->helperGetOrAdd(new DatosEnajenantesCopSC()); } public function addDatosEnajenantesCopSC(array $attributes = []): DatosEnajenantesCopSC { $subject = $this->getDatosEnajenantesCopSC(); $subject->addAttributes($attributes); return $subject; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/NotariosPublicos10/DatosUnEnajenante.php
src/CfdiUtils/Elements/NotariosPublicos10/DatosUnEnajenante.php
<?php namespace CfdiUtils\Elements\NotariosPublicos10; use CfdiUtils\Elements\Common\AbstractElement; class DatosUnEnajenante extends AbstractElement { public function getElementName(): string { return 'notariospublicos:DatosUnEnajenante'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/NotariosPublicos10/DescInmuebles.php
src/CfdiUtils/Elements/NotariosPublicos10/DescInmuebles.php
<?php namespace CfdiUtils\Elements\NotariosPublicos10; use CfdiUtils\Elements\Common\AbstractElement; class DescInmuebles extends AbstractElement { public function getElementName(): string { return 'notariospublicos:DescInmuebles'; } public function addDescInmueble(array $attributes = []): DescInmueble { $subject = new DescInmueble($attributes); $this->addChild($subject); return $subject; } public function multiDescInmueble(array ...$elementAttributes): self { foreach ($elementAttributes as $attributes) { $this->addDescInmueble($attributes); } return $this; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/NotariosPublicos10/NotariosPublicos.php
src/CfdiUtils/Elements/NotariosPublicos10/NotariosPublicos.php
<?php namespace CfdiUtils\Elements\NotariosPublicos10; use CfdiUtils\Elements\Common\AbstractElement; class NotariosPublicos extends AbstractElement { public function getElementName(): string { return 'notariospublicos:NotariosPublicos'; } public function getChildrenOrder(): array { return [ 'notariospublicos:DescInmuebles', 'notariospublicos:DatosOperacion', 'notariospublicos:DatosNotario', 'notariospublicos:DatosEnajenante', 'notariospublicos:DatosAdquiriente', ]; } public function getFixedAttributes(): array { return [ 'xmlns:notariospublicos' => 'http://www.sat.gob.mx/notariospublicos', 'xsi:schemaLocation' => 'http://www.sat.gob.mx/notariospublicos' . ' http://www.sat.gob.mx/sitio_internet/cfd/notariospublicos/notariospublicos.xsd', 'Version' => '1.0', ]; } public function getDescInmuebles(): DescInmuebles { return $this->helperGetOrAdd(new DescInmuebles()); } public function addDescInmuebles(array $attributes = []): DescInmuebles { $subject = $this->getDescInmuebles(); $subject->addAttributes($attributes); return $subject; } public function getDatosOperacion(): DatosOperacion { return $this->helperGetOrAdd(new DatosOperacion()); } public function addDatosOperacion(array $attributes = []): DatosOperacion { $subject = $this->getDatosOperacion(); $subject->addAttributes($attributes); return $subject; } public function getDatosNotario(): DatosNotario { return $this->helperGetOrAdd(new DatosNotario()); } public function addDatosNotario(array $attributes = []): DatosNotario { $subject = $this->getDatosNotario(); $subject->addAttributes($attributes); return $subject; } public function getDatosEnajenante(): DatosEnajenante { return $this->helperGetOrAdd(new DatosEnajenante()); } public function addDatosEnajenante(array $attributes = []): DatosEnajenante { $subject = $this->getDatosEnajenante(); $subject->addAttributes($attributes); return $subject; } public function getDatosAdquiriente(): DatosAdquiriente { return $this->helperGetOrAdd(new DatosAdquiriente()); } public function addDatosAdquiriente(array $attributes = []): DatosAdquiriente { $subject = $this->getDatosAdquiriente(); $subject->addAttributes($attributes); return $subject; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/NotariosPublicos10/DatosAdquiriente.php
src/CfdiUtils/Elements/NotariosPublicos10/DatosAdquiriente.php
<?php namespace CfdiUtils\Elements\NotariosPublicos10; use CfdiUtils\Elements\Common\AbstractElement; class DatosAdquiriente extends AbstractElement { public function getElementName(): string { return 'notariospublicos:DatosAdquiriente'; } public function getChildrenOrder(): array { return [ 'notariospublicos:DatosUnAdquiriente', 'notariospublicos:DatosAdquirientesCopSC', ]; } public function getDatosUnAdquiriente(): DatosUnAdquiriente { return $this->helperGetOrAdd(new DatosUnAdquiriente()); } public function addDatosUnAdquiriente(array $attributes = []): DatosUnAdquiriente { $subject = $this->getDatosUnAdquiriente(); $subject->addAttributes($attributes); return $subject; } public function getDatosAdquirientesCopSC(): DatosAdquirientesCopSC { return $this->helperGetOrAdd(new DatosAdquirientesCopSC()); } public function addDatosAdquirientesCopSC(array $attributes = []): DatosAdquirientesCopSC { $subject = $this->getDatosAdquirientesCopSC(); $subject->addAttributes($attributes); return $subject; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/NotariosPublicos10/DatosEnajenanteCopSC.php
src/CfdiUtils/Elements/NotariosPublicos10/DatosEnajenanteCopSC.php
<?php namespace CfdiUtils\Elements\NotariosPublicos10; use CfdiUtils\Elements\Common\AbstractElement; class DatosEnajenanteCopSC extends AbstractElement { public function getElementName(): string { return 'notariospublicos:DatosEnajenanteCopSC'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cfdi40/Addenda.php
src/CfdiUtils/Elements/Cfdi40/Addenda.php
<?php namespace CfdiUtils\Elements\Cfdi40; use CfdiUtils\Elements\Common\AbstractElement; class Addenda extends AbstractElement { public function getElementName(): string { return 'cfdi:Addenda'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cfdi40/Impuestos.php
src/CfdiUtils/Elements/Cfdi40/Impuestos.php
<?php namespace CfdiUtils\Elements\Cfdi40; use CfdiUtils\Elements\Common\AbstractElement; class Impuestos extends AbstractElement { use Traits\ImpuestosTrait; protected function getElementImpuestos(): self { return $this; } public function getElementName(): string { return 'cfdi:Impuestos'; } public function getChildrenOrder(): array { return [ 'cfdi:Retenciones', 'cfdi:Traslados', ]; } public function getTraslados(): Traslados { return $this->helperGetOrAdd(new Traslados()); } public function addTraslados(array $attributes = []): Traslados { $subject = $this->getTraslados(); $subject->addAttributes($attributes); return $subject; } public function getRetenciones(): Retenciones { return $this->helperGetOrAdd(new Retenciones()); } public function addRetenciones(array $attributes = []): Retenciones { $subject = $this->getRetenciones(); $subject->addAttributes($attributes); return $subject; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cfdi40/Parte.php
src/CfdiUtils/Elements/Cfdi40/Parte.php
<?php namespace CfdiUtils\Elements\Cfdi40; use CfdiUtils\Elements\Common\AbstractElement; class Parte extends AbstractElement { public function getElementName(): string { return 'cfdi:Parte'; } public function addInformacionAduanera(array $attributes = []): InformacionAduanera { $subject = new InformacionAduanera($attributes); $this->addChild($subject); return $subject; } public function multiInformacionAduanera(array ...$elementAttributes): self { foreach ($elementAttributes as $attributes) { $this->addInformacionAduanera($attributes); } return $this; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cfdi40/CfdiRelacionado.php
src/CfdiUtils/Elements/Cfdi40/CfdiRelacionado.php
<?php namespace CfdiUtils\Elements\Cfdi40; use CfdiUtils\Elements\Common\AbstractElement; class CfdiRelacionado extends AbstractElement { public function getElementName(): string { return 'cfdi:CfdiRelacionado'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cfdi40/Traslado.php
src/CfdiUtils/Elements/Cfdi40/Traslado.php
<?php namespace CfdiUtils\Elements\Cfdi40; use CfdiUtils\Elements\Common\AbstractElement; class Traslado extends AbstractElement { public function getElementName(): string { return 'cfdi:Traslado'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cfdi40/Receptor.php
src/CfdiUtils/Elements/Cfdi40/Receptor.php
<?php namespace CfdiUtils\Elements\Cfdi40; use CfdiUtils\Elements\Common\AbstractElement; class Receptor extends AbstractElement { public function getElementName(): string { return 'cfdi:Receptor'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cfdi40/ConceptoImpuestos.php
src/CfdiUtils/Elements/Cfdi40/ConceptoImpuestos.php
<?php namespace CfdiUtils\Elements\Cfdi40; class ConceptoImpuestos extends Impuestos { protected function getElementImpuestos(): Impuestos { return $this; } public function getChildrenOrder(): array { return [ 'cfdi:Traslados', 'cfdi:Retenciones', ]; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cfdi40/Traslados.php
src/CfdiUtils/Elements/Cfdi40/Traslados.php
<?php namespace CfdiUtils\Elements\Cfdi40; use CfdiUtils\Elements\Common\AbstractElement; class Traslados extends AbstractElement { public function getElementName(): string { return 'cfdi:Traslados'; } public function addTraslado(array $attributes = []): Traslado { $subject = new Traslado($attributes); $this->addChild($subject); return $subject; } public function multiTraslado(array ...$elementAttributes): self { foreach ($elementAttributes as $attributes) { $this->addTraslado($attributes); } return $this; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cfdi40/ComplementoConcepto.php
src/CfdiUtils/Elements/Cfdi40/ComplementoConcepto.php
<?php namespace CfdiUtils\Elements\Cfdi40; use CfdiUtils\Elements\Common\AbstractElement; class ComplementoConcepto extends AbstractElement { public function getElementName(): string { return 'cfdi:ComplementoConcepto'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cfdi40/CuentaPredial.php
src/CfdiUtils/Elements/Cfdi40/CuentaPredial.php
<?php namespace CfdiUtils\Elements\Cfdi40; use CfdiUtils\Elements\Common\AbstractElement; class CuentaPredial extends AbstractElement { public function getElementName(): string { return 'cfdi:CuentaPredial'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cfdi40/Retencion.php
src/CfdiUtils/Elements/Cfdi40/Retencion.php
<?php namespace CfdiUtils\Elements\Cfdi40; use CfdiUtils\Elements\Common\AbstractElement; class Retencion extends AbstractElement { public function getElementName(): string { return 'cfdi:Retencion'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cfdi40/ACuentaTerceros.php
src/CfdiUtils/Elements/Cfdi40/ACuentaTerceros.php
<?php namespace CfdiUtils\Elements\Cfdi40; use CfdiUtils\Elements\Common\AbstractElement; class ACuentaTerceros extends AbstractElement { public function getElementName(): string { return 'cfdi:ACuentaTerceros'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cfdi40/InformacionAduanera.php
src/CfdiUtils/Elements/Cfdi40/InformacionAduanera.php
<?php namespace CfdiUtils\Elements\Cfdi40; use CfdiUtils\Elements\Common\AbstractElement; class InformacionAduanera extends AbstractElement { public function getElementName(): string { return 'cfdi:InformacionAduanera'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cfdi40/InformacionGlobal.php
src/CfdiUtils/Elements/Cfdi40/InformacionGlobal.php
<?php namespace CfdiUtils\Elements\Cfdi40; use CfdiUtils\Elements\Common\AbstractElement; class InformacionGlobal extends AbstractElement { public function getElementName(): string { return 'cfdi:InformacionGlobal'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cfdi40/CfdiRelacionados.php
src/CfdiUtils/Elements/Cfdi40/CfdiRelacionados.php
<?php namespace CfdiUtils\Elements\Cfdi40; use CfdiUtils\Elements\Common\AbstractElement; class CfdiRelacionados extends AbstractElement { public function getElementName(): string { return 'cfdi:CfdiRelacionados'; } public function addCfdiRelacionado(array $attributes = []): CfdiRelacionado { $subject = new CfdiRelacionado($attributes); $this->addChild($subject); return $subject; } public function multiCfdiRelacionado(array ...$elementAttributes): self { foreach ($elementAttributes as $attributes) { $this->addCfdiRelacionado($attributes); } return $this; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cfdi40/Emisor.php
src/CfdiUtils/Elements/Cfdi40/Emisor.php
<?php namespace CfdiUtils\Elements\Cfdi40; use CfdiUtils\Elements\Common\AbstractElement; class Emisor extends AbstractElement { public function getElementName(): string { return 'cfdi:Emisor'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cfdi40/Concepto.php
src/CfdiUtils/Elements/Cfdi40/Concepto.php
<?php namespace CfdiUtils\Elements\Cfdi40; use CfdiUtils\Elements\Common\AbstractElement; use CfdiUtils\Nodes\NodeInterface; class Concepto extends AbstractElement { use Traits\ImpuestosTrait; protected function getElementImpuestos(): Impuestos { return $this->getImpuestos(); } public function getElementName(): string { return 'cfdi:Concepto'; } public function getChildrenOrder(): array { return [ 'cfdi:Impuestos', 'cfdi:ACuentaTerceros', 'cfdi:InformacionAduanera', 'cfdi:CuentaPredial', 'cfdi:ComplementoConcepto', 'cfdi:Parte', ]; } public function getImpuestos(): ConceptoImpuestos { return $this->helperGetOrAdd(new ConceptoImpuestos()); } public function addImpuestos(array $attributes = []): ConceptoImpuestos { $subject = $this->getImpuestos(); $subject->addAttributes($attributes); return $subject; } public function getACuentaTerceros(): ACuentaTerceros { return $this->helperGetOrAdd(new ACuentaTerceros()); } public function addACuentaTerceros(array $attributes = []): ACuentaTerceros { $subject = $this->getACuentaTerceros(); $subject->addAttributes($attributes); return $subject; } public function addInformacionAduanera(array $attributes = []): InformacionAduanera { $subject = new InformacionAduanera($attributes); $this->addChild($subject); return $subject; } public function multiInformacionAduanera(array ...$elementAttributes): self { foreach ($elementAttributes as $attributes) { $this->addInformacionAduanera($attributes); } return $this; } public function addCuentaPredial(array $attributes = []): CuentaPredial { $subject = new CuentaPredial($attributes); $this->addChild($subject); return $subject; } public function multiCuentaPredial(array ...$elementAttributes): self { foreach ($elementAttributes as $attributes) { $this->addCuentaPredial($attributes); } return $this; } public function getComplementoConcepto(): ComplementoConcepto { return $this->helperGetOrAdd(new ComplementoConcepto()); } public function addComplementoConcepto(NodeInterface $child): self { $this->getComplementoConcepto()->addChild($child); return $this; } public function addParte(array $attributes = []): Parte { $subject = new Parte($attributes); $this->addChild($subject); return $subject; } public function multiParte(array ...$elementAttributes): self { foreach ($elementAttributes as $attributes) { $this->addParte($attributes); } return $this; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cfdi40/Conceptos.php
src/CfdiUtils/Elements/Cfdi40/Conceptos.php
<?php namespace CfdiUtils\Elements\Cfdi40; use CfdiUtils\Elements\Common\AbstractElement; class Conceptos extends AbstractElement { public function getElementName(): string { return 'cfdi:Conceptos'; } public function addConcepto(array $attributes = []): Concepto { $subject = new Concepto($attributes); $this->addChild($subject); return $subject; } public function multiConcepto(array ...$elementAttributes): self { foreach ($elementAttributes as $attributes) { $this->addConcepto($attributes); } return $this; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cfdi40/Complemento.php
src/CfdiUtils/Elements/Cfdi40/Complemento.php
<?php namespace CfdiUtils\Elements\Cfdi40; use CfdiUtils\Elements\Common\AbstractElement; class Complemento extends AbstractElement { public function getElementName(): string { return 'cfdi:Complemento'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cfdi40/Retenciones.php
src/CfdiUtils/Elements/Cfdi40/Retenciones.php
<?php namespace CfdiUtils\Elements\Cfdi40; use CfdiUtils\Elements\Common\AbstractElement; class Retenciones extends AbstractElement { public function getElementName(): string { return 'cfdi:Retenciones'; } public function addRetencion(array $attributes = []): Retencion { $subject = new Retencion($attributes); $this->addChild($subject); return $subject; } public function multiRetencion(array ...$elementAttributes): self { foreach ($elementAttributes as $attributes) { $this->addRetencion($attributes); } return $this; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cfdi40/Comprobante.php
src/CfdiUtils/Elements/Cfdi40/Comprobante.php
<?php namespace CfdiUtils\Elements\Cfdi40; use CfdiUtils\Elements\Common\AbstractElement; use CfdiUtils\Nodes\NodeInterface; class Comprobante extends AbstractElement { use Traits\ImpuestosTrait; protected function getElementImpuestos(): Impuestos { return $this->getImpuestos(); } public function getElementName(): string { return 'cfdi:Comprobante'; } public function getChildrenOrder(): array { return [ 'cfdi:InformacionGlobal', 'cfdi:CfdiRelacionados', 'cfdi:Emisor', 'cfdi:Receptor', 'cfdi:Conceptos', 'cfdi:Impuestos', 'cfdi:Complemento', 'cfdi:Addenda', ]; } public function getFixedAttributes(): array { return [ 'xmlns:cfdi' => 'http://www.sat.gob.mx/cfd/4', 'xmlns:xsi' => 'http://www.w3.org/2001/XMLSchema-instance', 'xsi:schemaLocation' => 'http://www.sat.gob.mx/cfd/4' . ' http://www.sat.gob.mx/sitio_internet/cfd/4/cfdv40.xsd', 'Version' => '4.0', ]; } public function getInformacionGlobal(): InformacionGlobal { return $this->helperGetOrAdd(new InformacionGlobal()); } public function addInformacionGlobal(array $attributes = []): InformacionGlobal { $subject = $this->getInformacionGlobal(); $subject->addAttributes($attributes); return $subject; } public function addCfdiRelacionados(array $attributes = []): CfdiRelacionados { $subject = new CfdiRelacionados($attributes); $this->addChild($subject); return $subject; } public function multiCfdiRelacionados(array ...$elementAttributes): self { foreach ($elementAttributes as $attributes) { $this->addCfdiRelacionados($attributes); } return $this; } public function getEmisor(): Emisor { return $this->helperGetOrAdd(new Emisor()); } public function addEmisor(array $attributes = []): Emisor { $subject = $this->getEmisor(); $subject->addAttributes($attributes); return $subject; } public function getReceptor(): Receptor { return $this->helperGetOrAdd(new Receptor()); } public function addReceptor(array $attributes = []): Receptor { $subject = $this->getReceptor(); $subject->addAttributes($attributes); return $subject; } public function getConceptos(): Conceptos { return $this->helperGetOrAdd(new Conceptos()); } public function addConceptos(array $attributes = []): Conceptos { $subject = $this->getConceptos(); $subject->addAttributes($attributes); return $subject; } public function getImpuestos(): Impuestos { return $this->helperGetOrAdd(new Impuestos()); } public function addImpuestos(array $attributes = []): Impuestos { $subject = $this->getImpuestos(); $subject->addAttributes($attributes); return $subject; } public function getComplemento(): Complemento { return $this->helperGetOrAdd(new Complemento()); } public function addComplemento(NodeInterface $children): self { $this->getComplemento()->addChild($children); return $this; } public function getAddenda(): Addenda { return $this->helperGetOrAdd(new Addenda()); } public function addAddenda(NodeInterface $children): self { $this->getAddenda()->addChild($children); return $this; } public function addConcepto(array $attributes = []): Concepto { return $this->getConceptos()->addConcepto($attributes); } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cfdi40/Traits/ImpuestosTrait.php
src/CfdiUtils/Elements/Cfdi40/Traits/ImpuestosTrait.php
<?php namespace CfdiUtils\Elements\Cfdi40\Traits; use CfdiUtils\Elements\Cfdi40\Impuestos; use CfdiUtils\Elements\Cfdi40\Retencion; use CfdiUtils\Elements\Cfdi40\Traslado; trait ImpuestosTrait { /* * This method is required for all the shortcut methods included here * The returned instance must be Impuestos or an extended class */ abstract protected function getElementImpuestos(): Impuestos; public function addTraslado(array $attributes = []): Traslado { return $this->getElementImpuestos()->getTraslados()->addTraslado($attributes); } public function multiTraslado(array ...$elementAttributes): self { $this->getElementImpuestos()->getTraslados()->multiTraslado(...$elementAttributes); return $this; } public function addRetencion(array $attributes = []): Retencion { return $this->getElementImpuestos()->getRetenciones()->addRetencion($attributes); } public function multiRetencion(array ...$elementAttributes): self { $this->getElementImpuestos()->getRetenciones()->multiRetencion(...$elementAttributes); return $this; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Dividendos10/Remanente.php
src/CfdiUtils/Elements/Dividendos10/Remanente.php
<?php namespace CfdiUtils\Elements\Dividendos10; use CfdiUtils\Elements\Common\AbstractElement; class Remanente extends AbstractElement { public function getElementName(): string { return 'dividendos:Remanente'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Dividendos10/DividOUtil.php
src/CfdiUtils/Elements/Dividendos10/DividOUtil.php
<?php namespace CfdiUtils\Elements\Dividendos10; use CfdiUtils\Elements\Common\AbstractElement; class DividOUtil extends AbstractElement { public function getElementName(): string { return 'dividendos:DividOUtil'; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Dividendos10/Dividendos.php
src/CfdiUtils/Elements/Dividendos10/Dividendos.php
<?php namespace CfdiUtils\Elements\Dividendos10; use CfdiUtils\Elements\Common\AbstractElement; class Dividendos extends AbstractElement { public function getElementName(): string { return 'dividendos:Dividendos'; } public function getDividOUtil(): DividOUtil { return $this->helperGetOrAdd(new DividOUtil()); } public function addDividOUtil(array $attributes = []): DividOUtil { $dividOUtil = $this->getDividOUtil(); $dividOUtil->addAttributes($attributes); return $dividOUtil; } public function getRemanente(): Remanente { return $this->helperGetOrAdd(new Remanente()); } public function addRemanente(array $attributes = []): Remanente { $remanente = $this->getRemanente(); $remanente->addAttributes($attributes); return $remanente; } public function getChildrenOrder(): array { return [ 'dividendos:DividOUtil', 'dividendos:Remanente', ]; } public function getFixedAttributes(): array { return [ 'xmlns:dividendos' => 'http://www.sat.gob.mx/esquemas/retencionpago/1/dividendos', 'xsi:schemaLocation' => vsprintf('%s %s', [ 'http://www.sat.gob.mx/esquemas/retencionpago/1/dividendos', 'http://www.sat.gob.mx/esquemas/retencionpago/1/dividendos/dividendos.xsd', ]), 'Version' => '1.0', ]; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cfdi33/Addenda.php
src/CfdiUtils/Elements/Cfdi33/Addenda.php
<?php namespace CfdiUtils\Elements\Cfdi33; use CfdiUtils\Elements\Common\AbstractElement; use CfdiUtils\Nodes\NodeInterface; class Addenda extends AbstractElement { public function getElementName(): string { return 'cfdi:Addenda'; } public function add(NodeInterface $child): self { $this->children()->add($child); return $this; } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false
eclipxe13/CfdiUtils
https://github.com/eclipxe13/CfdiUtils/blob/6786b3ee34831ef0d633302226414682a7a35aca/src/CfdiUtils/Elements/Cfdi33/Impuestos.php
src/CfdiUtils/Elements/Cfdi33/Impuestos.php
<?php namespace CfdiUtils\Elements\Cfdi33; use CfdiUtils\Elements\Common\AbstractElement; class Impuestos extends AbstractElement { public function getElementName(): string { return 'cfdi:Impuestos'; } public function getChildrenOrder(): array { return [ 'cfdi:Retenciones', 'cfdi:Traslados', ]; } public function getTraslados(): Traslados { return $this->helperGetOrAdd(new Traslados()); } public function getRetenciones(): Retenciones { return $this->helperGetOrAdd(new Retenciones()); } }
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false