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

ElementRef::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 4
ccs 3
cts 3
cp 1
crap 1
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