| 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 $schemaDefinition; |
||
| 27 | |||
| 28 | /** @var bool */ |
||
| 29 | protected $globalSchemaLocation = true; |
||
| 30 | |||
| 31 | public function getNamespace(): string |
||
| 35 | |||
| 36 | public function getSchemaLocation(): string |
||
| 46 | } |
||
| 47 |