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

ElementRef::loadElementRef()   A

Complexity

Conditions 3
Paths 4

Size

Total Lines 17
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 8
CRAP Score 3.3332

Importance

Changes 0
Metric Value
cc 3
eloc 9
c 0
b 0
f 0
nc 4
nop 2
dl 0
loc 17
ccs 8
cts 12
cp 0.6667
crap 3.3332
rs 9.4285
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