1 | <?php |
||
34 | abstract class Role extends AbstractElement |
||
|
|||
35 | implements \PHPHealth\CDA\HasClassCode |
||
36 | { |
||
37 | |||
38 | |||
39 | /** |
||
40 | * |
||
41 | * @param \DOMDocument $doc |
||
42 | * @param string[] $properties the name of the properties to apply on element |
||
43 | * @return \DOMElement |
||
44 | */ |
||
45 | /*protected function createElement(\DOMDocument $doc, array $properties = array()) |
||
46 | { |
||
47 | $el = parent::createElement($doc, $properties); |
||
48 | |||
49 | if (! empty($this->getClassCode())) { |
||
50 | $el->setAttribute(CDA::NS_CDA.'classCode', $this->getClassCode()); |
||
51 | } |
||
52 | |||
53 | return $el; |
||
54 | }*/ |
||
55 | } |
||
56 |