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(): NoBeneficia...
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($ret...
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() + $attrib...
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 [ '...
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 $attrib...
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...
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...
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 { $sub...
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->helper...
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 { ...
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 { ...
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 [ ...
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 [ ...
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 [ ...
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 { ...
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 ...
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 = []): TiposF...
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 [ ...
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 [ ...
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 { re...
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://ww...
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 [ ...
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 functio...
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 getFixedAttrib...
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...
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...
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(): ...
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 [ 'x...
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...
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 $domicil...
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 { ...
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); ...
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...
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(ar...
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...
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 { ...
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 = []): D...
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 { ...
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 { ...
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 '...
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 { ...
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...
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 ...
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 f...
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...
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...
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(); } publi...
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 Impu...
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->help...
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 { ...
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:Retenci...
php
MIT
6786b3ee34831ef0d633302226414682a7a35aca
2026-01-05T04:57:52.988826Z
false