for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace PhpCfdi\SatCatalogos\Nomina;
use PhpCfdi\SatCatalogos\Common\AbstractEntryIdentifiable;
use PhpCfdi\SatCatalogos\Common\EntryIdentifiable;
class Estado extends AbstractEntryIdentifiable implements EntryIdentifiable
{
/** @var string */
public $estado;
public $pais;
public function __construct(string $estado, string $pais)
$this->estado = $estado;
$this->pais = $pais;
}