Passed
Push — static-analysis ( 1958c5...5a8282 )
by SignpostMarv
10:41 queued 08:16
created

ElementRef::getType()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 3
ccs 0
cts 2
cp 0
crap 2
rs 10
1
<?php
2
3
namespace GoetasWebservices\XML\XSDReader\Schema\Element;
4
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()
22
    {
23
        return $this->wrapped;
24
    }
25
26
    /**
27
     * @return \GoetasWebservices\XML\XSDReader\Schema\Type\Type|null
28
     */
29
    public function getType()
30
    {
31
        return $this->wrapped->getType();
32
    }
33
}
34