1 | <?php |
||
14 | class ComplementoBase extends Node |
||
15 | { |
||
16 | /** @var string */ |
||
17 | const SAT_URL = 'http://www.sat.gob.mx/'; |
||
18 | |||
19 | /** @var string */ |
||
20 | const SCHEMA_URL = 'http://www.sat.gob.mx/sitio_internet/cfd/%s/%s.xsd'; |
||
21 | |||
22 | /** @var string */ |
||
23 | protected $namespace; |
||
24 | |||
25 | /** @var string */ |
||
26 | protected $namespaceKey; |
||
27 | |||
28 | /** @var string */ |
||
29 | protected $schemaDefinition; |
||
30 | |||
31 | /** @var bool */ |
||
32 | protected $globalSchemaLocation = true; |
||
33 | |||
34 | public function getNamespace(): string |
||
38 | |||
39 | public function getSchemaLocation(): string |
||
49 | } |
||
50 |