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
{
public function __construct(string $estado, string $pais, string $texto)
$this->estado = $estado;
estado
$this->pais = $pais;
pais
$this->texto = $texto;
texto
PhpCfdi\SatCatalogos\Com...stractEntryIdentifiable
}