for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace PhpCfdi\SatCatalogos\CFDI40;
use PhpCfdi\SatCatalogos\Common\AbstractEntryIdentifiable;
use PhpCfdi\SatCatalogos\Common\EntryIdentifiable;
class Exportacion extends AbstractEntryIdentifiable implements EntryIdentifiable
{
public function __construct(
string $id,
string $texto,
int $vigenteDesde,
int $vigenteHasta
) {
parent::__construct($id, $texto, $vigenteDesde, $vigenteHasta);
}