├── VERSION.txt ├── src ├── Models │ ├── Smartpd │ │ └── .gitkeep │ ├── Abrasf │ │ ├── Factories │ │ │ ├── v200 │ │ │ │ ├── SubstituirNfse.php │ │ │ │ ├── CancelarNfse.php │ │ │ │ ├── ConsultarNfsePorFaixa.php │ │ │ │ ├── ConsultarNfsePorRps.php │ │ │ │ ├── GerarNfse.php │ │ │ │ ├── RecepcionarLoteRpsSincrono.php │ │ │ │ ├── ConsultarNfseServicoPrestado.php │ │ │ │ └── ConsultarNfseServicoTomado.php │ │ │ ├── v201 │ │ │ │ ├── SubstituirNfse.php │ │ │ │ ├── CancelarNfse.php │ │ │ │ ├── ConsultarNfsePorFaixa.php │ │ │ │ ├── ConsultarNfsePorRps.php │ │ │ │ ├── GerarNfse.php │ │ │ │ ├── RecepcionarLoteRpsSincrono.php │ │ │ │ ├── ConsultarNfseServicoPrestado.php │ │ │ │ └── ConsultarNfseServicoTomado.php │ │ │ ├── v202 │ │ │ │ ├── SubstituirNfse.php │ │ │ │ ├── CancelarNfse.php │ │ │ │ ├── ConsultarNfsePorFaixa.php │ │ │ │ ├── ConsultarNfsePorRps.php │ │ │ │ ├── GerarNfse.php │ │ │ │ ├── RecepcionarLoteRpsSincrono.php │ │ │ │ ├── ConsultarNfseServicoPrestado.php │ │ │ │ └── ConsultarNfseServicoTomado.php │ │ │ ├── Header.php │ │ │ ├── Factory.php │ │ │ ├── SubstituirNfse.php │ │ │ ├── CancelarNfse.php │ │ │ ├── ConsultarNfsePorRps.php │ │ │ ├── ConsultarNfsePorFaixa.php │ │ │ ├── RecepcionarLoteRpsSincrono.php │ │ │ ├── ConsultarNfseServicoPrestado.php │ │ │ ├── ConsultarNfseServicoTomado.php │ │ │ └── ConsultarLoteRps.php │ │ └── Convert.php │ ├── Ginfes │ │ ├── Factories │ │ │ ├── CancelarNfse.php │ │ │ ├── ConsultarNfse.php │ │ │ ├── CancelarNfseV3.php │ │ │ ├── ConsultarNfseV3.php │ │ │ ├── ConsultarLoteRps.php │ │ │ ├── ConsultarLoteRpsV3.php │ │ │ ├── ConsultarSituacaoLoteRps.php │ │ │ ├── RecepcionarLoteRps.php │ │ │ ├── ConsultarNfsePorRps.php │ │ │ ├── RecepcionarLoteRpsV3.php │ │ │ ├── ConsultarNfsePorRpsV3.php │ │ │ ├── ConsultarSituacaoLoteRpsV3.php │ │ │ ├── Header.php │ │ │ └── Factory.php │ │ ├── Convert.php │ │ ├── RenderRps.php │ │ ├── Rps.php │ │ └── Response.php │ ├── ETransparencia │ │ ├── Factories │ │ │ ├── VerificaRPS.php │ │ │ ├── ProcessarRPS.php │ │ │ ├── ProcessarLoteRPS.php │ │ │ ├── VerificaLoteRPS.php │ │ │ ├── ConsultaProtocolo.php │ │ │ ├── ConsultaNotasProtocolo.php │ │ │ ├── CancelaNotaEletronica.php │ │ │ ├── CancelaNotaEletronicaV3.php │ │ │ ├── ConsultaProtocoloRPS.php │ │ │ └── Header.php │ │ ├── Convert.php │ │ ├── RenderRps.php │ │ ├── Rps.php │ │ ├── Tools.php │ │ └── Response.php │ ├── Infisc │ │ ├── Factories │ │ │ ├── Factory.php │ │ │ └── Header.php │ │ └── Convert.php │ ├── Goiania │ │ ├── Factories │ │ │ └── v02 │ │ │ │ ├── GerarNfse.php │ │ │ │ ├── RecepcionarLoteRps.php │ │ │ │ └── ConsultarLoteRps.php │ │ ├── Rps.php │ │ └── Convert.php │ ├── BHISS │ │ ├── Factories │ │ │ └── v100 │ │ │ │ └── ConsultarLoteRps.php │ │ ├── Rps.php │ │ └── Convert.php │ ├── Betha │ │ ├── Factories │ │ │ └── v202 │ │ │ │ ├── ConsultarLoteRps.php │ │ │ │ └── RecepcionarLoteRps.php │ │ ├── Rps.php │ │ ├── RenderRps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── Issnet │ │ ├── Convert.php │ │ └── Factories │ │ │ └── ConsultarLoteRps.php │ ├── Abaco │ │ ├── Rps.php │ │ ├── Factories │ │ │ └── v2010 │ │ │ │ ├── ConsultarLoteRps.php │ │ │ │ └── RecepcionarLoteRps.php │ │ └── Convert.php │ ├── Dsfnet │ │ └── Response.php │ └── Prodam │ │ └── Response.php ├── Counties │ ├── M2927408 │ │ ├── .Salvador_BA │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M1302603 │ │ ├── .Manaus_AM │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M3509502 │ │ ├── .Campinas_SP │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M3550308 │ │ ├── .Sao_Paulo_SP │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M3530607 │ │ ├── .Mogi_das_Cruzes_SP │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M3304557 │ │ ├── .Rio_de_Janeiro_RJ │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M4216602 │ │ ├── .Sao_Jose_SC │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M4115200 │ │ ├── .Maringa_PR │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M3526902 │ │ ├── .Limeira_SP │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M4106902 │ │ ├── .Curitiba_PR │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M4314902 │ │ ├── .Porto_Alegre_RS │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M3106200 │ │ ├── .Belo_Horizonte_MG │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M3527207 │ │ ├── .Lorena_SP │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M5002209 │ │ ├── .Bonito_MS │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M5105101 │ │ ├── .Juara_MT │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M5105903 │ │ ├── .Nobres_MT │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M3139607 │ │ ├── .Mantena_MG │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M3524402 │ │ ├── .Jacarei_SP │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M3551504 │ │ ├── .Serrana_SP │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M5003702 │ │ ├── .Dourados_MT │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M5005707 │ │ ├── .Navirai_MS │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M5107925 │ │ ├── .Sorriso_MT │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M5201108 │ │ ├── .Anapolis_GO │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M1702109 │ │ ├── .Araguaina_TO │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M3502101 │ │ ├── .Andradina_SP │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M3502507 │ │ ├── .Aparecida_SP │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M3524709 │ │ ├── .Jaguariuna_SP │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M3551009 │ │ ├── .Sao_Vicente_SP │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M4306106 │ │ ├── .Cruz_Alta_RS │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M4316907 │ │ ├── .Santa_Maria_RS │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M5007901 │ │ ├── .Sidrolandia_MS │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M3169307 │ │ ├── .Tres_Coracoes_MG │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M3522307 │ │ ├── .Itapetininga_SP │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M3541000 │ │ ├── .Praia_Grande_SP │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M4313409 │ │ ├── .Novo_Hamburgo_RS │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M5007208 │ │ ├── .Rio_Brilhante_MS │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M5100250 │ │ ├── .Alta_Floresta_MT │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M5103403 │ │ ├── .Cuiaba_MT │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M5106232 │ │ ├── .Nova_Olimpia_MT │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M5108402 │ │ ├── .Varzea_Grande_MT │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M5006002 │ │ ├── .Nova_Alvorada_do_Sul_MS │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M5201405 │ │ ├── .Aparecida_de_Goiania_GO │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M4104808 │ │ ├── .Cascavel_PR │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M5208707 │ │ ├── .Goiania_GO │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M2111300 │ │ ├── .Sao_Luis_MA │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M1501402 │ │ ├── .Belem_PA │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M3552205 │ │ ├── .Sorocaba_SP │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M2211001 │ │ ├── .Teresina_PI │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M3170206 │ │ ├── .Uberlandia_MG │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ ├── M4305108 │ │ ├── Rps.php │ │ ├── Convert.php │ │ └── Response.php │ └── M5002704 │ │ ├── Rps.php │ │ ├── Convert.php │ │ ├── Response.php │ │ └── .Campo_Grande_MS └── Common │ ├── Logger.php │ ├── Rps.php │ └── Header.php ├── bootstrap.php ├── schemes └── Models │ ├── Dsfnet │ └── v01 │ │ └── vssver.scc │ └── Ginfes │ ├── cabecalho_v03.xsd │ ├── servico_cancelar_nfse_resposta_v03.xsd │ └── servico_consultar_nfse_rps_resposta_v03.xsd └── CHANGELOG.md /VERSION.txt: -------------------------------------------------------------------------------- 1 | 0.1.x-dev -------------------------------------------------------------------------------- /src/Models/Smartpd/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Counties/M2927408/.Salvador_BA: -------------------------------------------------------------------------------- 1 | Padrãqo: ABRASF (modificado) 2 | -------------------------------------------------------------------------------- /bootstrap.php: -------------------------------------------------------------------------------- 1 | xmlns = $xmlns; 28 | } 29 | } -------------------------------------------------------------------------------- /src/Counties/M2111300/.Sao_Luis_MA: -------------------------------------------------------------------------------- 1 | Padrão: DSFNET 2 | Codigo Municipio IBGE: 2111300 3 | Codigo Cidade SIAFI: 921 4 | SOAP Version: 1.1 5 | Signature Method: SHA1 6 | Using CData: true ?? 7 | URL: http://sistemas.semfaz.saoluis.ma.gov.br:80/WsNFe2/LoteRps 8 | xmlns: http://sistemas.semfaz.saoluis.ma.gov.br/WsNFe2/LoteRps.jws 9 | 10 | 11 | 12 | 13 | 14 | ? 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/Models/Issnet/Convert.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | class Convert 20 | { 21 | 22 | } 23 | -------------------------------------------------------------------------------- /src/Models/Ginfes/Convert.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | class Convert 20 | { 21 | 22 | } 23 | -------------------------------------------------------------------------------- /src/Models/Abrasf/Convert.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | class Convert 20 | { 21 | 22 | } 23 | -------------------------------------------------------------------------------- /src/Models/Ginfes/RenderRps.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | class RenderRps 20 | { 21 | 22 | } 23 | -------------------------------------------------------------------------------- /src/Models/ETransparencia/Convert.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | class Convert 20 | { 21 | 22 | } 23 | -------------------------------------------------------------------------------- /src/Models/Ginfes/Rps.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Common\Rps as RpsBase; 20 | 21 | class Rps extends RpsBase 22 | { 23 | 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M3304557/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | class Rps extends RpsAbrasf 21 | { 22 | } 23 | -------------------------------------------------------------------------------- /src/Models/ETransparencia/RenderRps.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | class RenderRps 20 | { 21 | 22 | } 23 | -------------------------------------------------------------------------------- /src/Counties/M1501402/.Belem_PA: -------------------------------------------------------------------------------- 1 | Padrão: DSFNET 2 | Codigo Municipio IBGE: 150142 3 | Codigo Cidade SIAFI: 0427 4 | SOAP Version: 1.1 5 | Signature Method: SHA1 6 | Using CData: true ?? 7 | URL: http://www.issdigitalbel.com.br/WsNFe2/LoteRps.jws 8 | xmlns: 9 | 10 | 11 | 12 | 13 | 14 | ? 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/Models/ETransparencia/Rps.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Common\Rps as RpsBase; 20 | 21 | class Rps extends RpsBase 22 | { 23 | 24 | } 25 | -------------------------------------------------------------------------------- /schemes/Models/Ginfes/cabecalho_v03.xsd: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /src/Counties/M3552205/.Sorocaba_SP: -------------------------------------------------------------------------------- 1 | Padrão: DSFNET 2 | Codigo Municipio IBGE: 3552205 3 | Codigo Cidade SIAFI: 7145 4 | SOAP Version: 1.1 5 | Signature Method: SHA1 6 | Using CData: true ?? 7 | URL: http://www.issdigitalsod.com.br/WsNFe2/LoteRps.jws 8 | TESTE: 9 | xmlns: 10 | 11 | 12 | 13 | 14 | 15 | ? 16 | 17 | 18 | -------------------------------------------------------------------------------- /src/Counties/M2211001/.Teresina_PI: -------------------------------------------------------------------------------- 1 | Padrão: DSFNET 2 | Codigo Municipio IBGE: 2211001 3 | Codigo Cidade SIAFI: 1219 4 | SOAP Version: 1.1 5 | Signature Method: SHA1 6 | Using CData: true ?? 7 | URL: http://www.issdigitalthe.com.br/WsNFe2/LoteRps.jws 8 | TESTE: 9 | xmlns: 10 | 11 | 12 | 13 | 14 | 15 | ? 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/Counties/M3170206/.Uberlandia_MG: -------------------------------------------------------------------------------- 1 | Padrão: DSFNET 2 | Codigo Municipio IBGE: 3170206 3 | Codigo Cidade SIAFI: 5403 4 | SOAP Version: 1.1 5 | Signature Method: SHA1 6 | Using CData: true ?? 7 | URL: http://udigital.uberlandia.mg.gov.br/WsNFe2/LoteRps.jws 8 | TESTE: 9 | xmlns: 10 | 11 | 12 | 13 | 14 | 15 | ? 16 | 17 | 18 | -------------------------------------------------------------------------------- /src/Models/Abaco/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Abrasf\Rps as RpsAbrasf; 21 | 22 | class Rps extends RpsAbrasf 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Models/BHISS/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Abrasf\Rps as RpsAbrasf; 21 | 22 | class Rps extends RpsAbrasf 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Models/Betha/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Abrasf\Rps as RpsAbrasf; 21 | 22 | class Rps extends RpsAbrasf 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Models/Dsfnet/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Common\Response as ResponseBase; 20 | 21 | class Response extends ResponseBase 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Models/Ginfes/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Common\Response as ResponseBase; 20 | 21 | class Response extends ResponseBase 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Models/Infisc/Convert.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use InvalidArgumentException; 20 | use NFePHP\Common\Strings; 21 | use NFePHP\NFSe\Models\Infisc\Rps; 22 | 23 | class Convert 24 | { 25 | 26 | } 27 | -------------------------------------------------------------------------------- /src/Counties/M1501402/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Dsfnet\Rps as RpsDsfnet; 21 | 22 | class Rps extends RpsDsfnet 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M2927408/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Abrasf\Rps as RpsAbrasf; 21 | 22 | class Rps extends RpsAbrasf 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M3139607/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M3524402/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M3526902/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Prodam\Rps as RpsProdam; 21 | 22 | class Rps extends RpsProdam 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M3527207/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M3550308/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Prodam\Rps as RpsProdam; 21 | 22 | class Rps extends RpsProdam 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M3551504/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M5002209/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M5005707/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M5103403/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M5105101/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M5105903/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M5107925/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Models/ETransparencia/Tools.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Common\Tools as ToolsBase; 20 | 21 | class Tools extends ToolsBase 22 | { 23 | 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M1702109/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M2111300/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Dsfnet\Rps as RpsDsfnet; 21 | 22 | class Rps extends RpsDsfnet 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M2211001/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Dsfnet\Rps as RpsDsfnet; 21 | 22 | class Rps extends RpsDsfnet 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M3170206/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Dsfnet\Rps as RpsDsfnet; 21 | 22 | class Rps extends RpsDsfnet 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M3502101/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M3502507/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M3509502/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Dsfnet\Rps as RpsDsfnet; 21 | 22 | class Rps extends RpsDsfnet 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M3522307/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M3524709/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M3541000/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M3551009/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M3552205/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Dsfnet\Rps as RpsDsfnet; 21 | 22 | class Rps extends RpsDsfnet 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M4104808/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M4306106/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M4316907/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M5003702/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M5007901/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M5106232/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M5201108/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Models/Goiania/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Abrasf\Rps as RpsAbrasf; 21 | 22 | class Rps extends RpsAbrasf 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M1302603/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Abaco\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M3169307/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M3530607/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Smartpd\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M4305108/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Infisc\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M4313409/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M5002704/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Dsfnet\Rps as RpsDsfnet; 21 | 22 | class Rps extends RpsDsfnet 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M5007208/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M5100250/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M5108402/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M3550308/Convert.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Prodam\Convert as ConvertProdam; 20 | 21 | class Convert extends ConvertProdam 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M4106902/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Betha\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M4115200/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Betha\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M4216602/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Betha\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M5006002/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M5201405/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M5208707/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Abrasf\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Models/Prodam/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Common\Response as ResponseBase; 20 | 21 | class Response extends ResponseBase 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M1501402/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Dsfnet\Convert as ConvertDsfnet; 21 | 22 | class Convert extends ConvertDsfnet 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M1501402/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Dsfnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M1702109/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M3106200/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\BHISS\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M3139607/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M3502101/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M3502507/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M3524402/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M3527207/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M3551504/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M4104808/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M4305108/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Infisc\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M4306106/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M4314902/Rps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\BHISS\Rps as RpsModel; 21 | 22 | class Rps extends RpsModel 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M5002209/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M5003702/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M5005707/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M5103403/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M5105101/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M5105903/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M5107925/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M5201108/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M1302603/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Abaco\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M2111300/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Dsfnet\Convert as ConvertDsfnet; 21 | 22 | class Convert extends ConvertDsfnet 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M2111300/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Dsfnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M2211001/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Dsfnet\Convert as ConvertDsfnet; 21 | 22 | class Convert extends ConvertDsfnet 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M2211001/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Dsfnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M2927408/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Abrasf\Convert as ConvertAbrasf; 21 | 22 | class Convert extends ConvertAbrasf 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M2927408/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Abrasf\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M3169307/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M3170206/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Dsfnet\Convert as ConvertDsfnet; 21 | 22 | class Convert extends ConvertDsfnet 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M3509502/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Dsfnet\Convert as ConvertDsfnet; 21 | 22 | class Convert extends ConvertDsfnet 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M3509502/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Dsfnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M3522307/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M3524709/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M3541000/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M3550308/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Prodam\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M3551009/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M3552205/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Dsfnet\Convert as ConvertDsfnet; 21 | 22 | class Convert extends ConvertDsfnet 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M3552205/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Dsfnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M4313409/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M4316907/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M5002704/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Dsfnet\Convert as ConvertDsfnet; 21 | 22 | class Convert extends ConvertDsfnet 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M5007208/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M5007901/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M5100250/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M5106232/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M5108402/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/ETransparencia/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Common\Response as ResponseBase; 20 | 21 | class Response extends ResponseBase 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M3170206/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Dsfnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M3304557/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Abrasf\Convert as ConvertAbrasf; 21 | 22 | class Convert extends ConvertAbrasf 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M3304557/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Abrasf\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M3526902/Convert.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\ETransparencia\Convert as ConvertModel; 20 | 21 | class Convert extends ConvertModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M3530607/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M4115200/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Betha\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M4216602/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Betha\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M5002704/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Dsfnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Models/Betha/RenderRps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Abrasf\RenderRps as RenderBase; 21 | 22 | class RenderRps extends RenderBase 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M3106200/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\BHISS\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M4106902/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Betha\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M4314902/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\BHISS\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M5002704/.Campo_Grande_MS: -------------------------------------------------------------------------------- 1 | Padrão: DSFNET 2 | Codigo Municipio IBGE: 5002704 3 | Codigo Cidade SIAFI: 9051 4 | SOAP Version: 1.1 5 | Signature Method: SHA1 6 | Using CData: true ?? 7 | URL: http://issdigital.pmcg.ms.gov.br/WsNFe2/LoteRps.jws?wsdl 8 | TESTE: http://200.201.194.78/WsNFe2/LoteRps.jws?wsdl 9 | xmlns: 10 | 11 | 12 | 13 | 14 | 15 | ? 16 | 17 | 18 | -------------------------------------------------------------------------------- /src/Counties/M5006002/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M5105101/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Issnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M5201405/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Issnet\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M5208707/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Goiania\Convert as ConvertModel; 21 | 22 | class Convert extends ConvertModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Models/Abaco/Factories/v2010/ConsultarLoteRps.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | class ConsultarLoteRps extends ConsultarLoteRpsAbrasft 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /src/Models/Infisc/Factories/Header.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Common\Header as HeaderBase; 20 | 21 | class Header extends HeaderBase 22 | { 23 | 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M1702109/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Issnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M3139607/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Issnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M3502101/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Issnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M3502507/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Issnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M3524402/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Issnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M3524709/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Issnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M3527207/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Issnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M3551504/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Issnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M4104808/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Issnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M4305108/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Infisc\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M4306106/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Issnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M5002209/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Issnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M5003702/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Issnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M5005707/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Issnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M5103403/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Issnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M5105903/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Issnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M5107925/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Issnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M5201108/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Issnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Models/Abaco/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Abrasf\Convert as ConvertAbrasf; 21 | 22 | class Convert extends ConvertAbrasf 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Models/BHISS/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Abrasf\Convert as ConvertAbrasf; 21 | 22 | class Convert extends ConvertAbrasf 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Models/Betha/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Abrasf\Convert as ConvertAbrasf; 21 | 22 | class Convert extends ConvertAbrasf 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M3169307/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Issnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M3522307/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Issnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M3541000/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Issnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M3551009/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Issnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M4313409/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Issnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M4316907/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Issnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M5007208/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Issnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M5007901/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Issnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M5100250/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Issnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M5106232/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Issnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M5108402/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Issnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Models/Abaco/Factories/v2010/RecepcionarLoteRps.php: -------------------------------------------------------------------------------- 1 | 14 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 15 | */ 16 | 17 | use NFePHP\NFSe\Models\Abrasf\Factories\v100\RecepcionarLoteRps as RecepcionarLoteRpsAbrasft; 18 | 19 | class RecepcionarLoteRps extends RecepcionarLoteRpsAbrasft 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /src/Counties/M1302603/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Abaco\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M3530607/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Smartpd\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M4216602/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Betha\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M5006002/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Issnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M5201405/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Issnet\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Models/Goiania/Convert.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Abrasf\Convert as ConvertAbrasf; 21 | 22 | class Convert extends ConvertAbrasf 23 | { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/Counties/M3106200/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\BHISS\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M4314902/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\BHISS\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M5208707/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Goiania\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /schemes/Models/Ginfes/servico_cancelar_nfse_resposta_v03.xsd: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/Common/Rps.php: -------------------------------------------------------------------------------- 1 | 15 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 16 | */ 17 | 18 | class Rps 19 | { 20 | 21 | protected function validData($matriz, $key) 22 | { 23 | return array_key_exists($key, $matriz); 24 | } 25 | 26 | protected function validate($value, $format, $default) 27 | { 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/Models/ETransparencia/Factories/Header.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Common\Header as HeaderBase; 20 | 21 | class Header extends HeaderBase 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Counties/M3526902/Response.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\ETransparencia\Response as ResponseModel; 21 | 22 | class Response extends ResponseModel 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M4115200/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Abrasf\Factories\v201\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Models/Betha/Response.php: -------------------------------------------------------------------------------- 1 | 17 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 18 | */ 19 | 20 | use NFePHP\NFSe\Models\Abrasf\Factories\v202\Response as ResponseAbrasf; 21 | 22 | class Response extends ResponseAbrasf 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Counties/M4106902/Response.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | use NFePHP\NFSe\Models\Abrasf\Factories\v100\Response as ResponseModel; 20 | 21 | class Response extends ResponseModel 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /src/Models/Issnet/Factories/ConsultarLoteRps.php: -------------------------------------------------------------------------------- 1 | requestFirstPart($method, $xsd); 17 | $content .= Header::render($remetenteTipoDoc, $remetenteCNPJCPF, $inscricaoMunicipal); 18 | $content .= "$protocolo"; 19 | $content .= ""; 20 | $body = $this->clear($content); 21 | $this->validar($versao, $body, 'Issnet', $xsd, ''); 22 | return $body; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/Common/Header.php: -------------------------------------------------------------------------------- 1 | 16 | * @link http://github.com/nfephp-org/sped-nfse for the canonical source repository 17 | */ 18 | 19 | class Header 20 | { 21 | protected static function check($tag, $info = null) 22 | { 23 | if (is_null($info)) { 24 | return ''; 25 | } 26 | return "<$tag>$info"; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /schemes/Models/Ginfes/servico_consultar_nfse_rps_resposta_v03.xsd: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | --------------------------------------------------------------------------------