Total Complexity | 3 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Coverage | 50% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class ElementRef extends AbstractElementSingle |
||
6 | { |
||
7 | /** |
||
8 | * @var ElementDef |
||
9 | */ |
||
10 | protected $wrapped; |
||
11 | |||
12 | 45 | public function __construct(ElementDef $element) |
|
13 | { |
||
14 | 45 | parent::__construct($element->getSchema(), $element->getName()); |
|
15 | 45 | $this->wrapped = $element; |
|
16 | 45 | } |
|
17 | |||
18 | /** |
||
19 | * @return ElementDef |
||
20 | */ |
||
21 | public function getReferencedElement() |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * @return \GoetasWebservices\XML\XSDReader\Schema\Type\Type|null |
||
28 | */ |
||
29 | public function getType() |
||
32 | } |
||
33 | } |
||
34 |