| 1 | <?php |
||
| 17 | abstract class DocumentAbstract extends \DOMDocument implements DocumentInterface |
||
| 18 | { |
||
| 19 | const ENCONDING = 'utf-8'; |
||
| 20 | |||
| 21 | public $docset; |
||
| 22 | |||
| 23 | protected $elementPrefix = ''; |
||
| 24 | |||
| 25 | public function __construct() |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Factory DOMElement. |
||
| 35 | * |
||
| 36 | * @param string $type |
||
| 37 | * @param string $key |
||
| 38 | * @param mixed $prop |
||
| 39 | * |
||
| 40 | * @return \DOMElement |
||
| 41 | */ |
||
| 42 | protected function factoryTag($type, $key, $prop) |
||
| 57 | } |
||
| 58 |