Total Complexity | 13 |
Total Lines | 113 |
Duplicated Lines | 0 % |
Coverage | 82.35% |
Changes | 0 |
1 | <?php |
||
8 | class GroupRef extends Group implements InterfaceSetMinMax |
||
9 | { |
||
10 | /** |
||
11 | * @var Group |
||
12 | */ |
||
13 | protected $wrapped; |
||
14 | |||
15 | /** |
||
16 | * @var int |
||
17 | */ |
||
18 | protected $min = 1; |
||
19 | |||
20 | /** |
||
21 | * @var int |
||
22 | */ |
||
23 | protected $max = 1; |
||
24 | |||
25 | 45 | public function __construct(Group $group) |
|
26 | { |
||
27 | 45 | parent::__construct($group->getSchema(), ''); |
|
28 | 45 | $this->wrapped = $group; |
|
29 | 45 | } |
|
30 | |||
31 | /** |
||
32 | * @return int |
||
33 | */ |
||
34 | public function getMin() |
||
35 | { |
||
36 | return $this->min; |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * @param int $min |
||
41 | * |
||
42 | * @return $this |
||
43 | */ |
||
44 | 45 | public function setMin($min) |
|
48 | } |
||
49 | |||
50 | /** |
||
51 | * @return int |
||
52 | */ |
||
53 | 1 | public function getMax() |
|
56 | } |
||
57 | |||
58 | /** |
||
59 | * @param int $max |
||
60 | * |
||
61 | * @return $this |
||
62 | */ |
||
63 | 45 | public function setMax($max) |
|
64 | { |
||
65 | 45 | $this->max = $max; |
|
66 | 45 | return $this; |
|
67 | } |
||
68 | |||
69 | /** |
||
70 | * @return string |
||
71 | */ |
||
72 | 1 | public function getName() |
|
73 | { |
||
74 | 1 | return $this->wrapped->getName(); |
|
75 | } |
||
76 | |||
77 | /** |
||
78 | * @param string $name |
||
79 | */ |
||
80 | public function setName($name) |
||
83 | } |
||
84 | |||
85 | /** |
||
86 | * @return ElementItem[] |
||
87 | */ |
||
88 | 1 | public function getElements() |
|
89 | { |
||
90 | 1 | $elements = $this->wrapped->getElements(); |
|
91 | 1 | if($this->getMax()>0 || $this->getMax()===-1){ |
|
92 | 1 | foreach ($elements as $k => $element) { |
|
93 | /** |
||
94 | * @var Element|ElementRef|ElementSingle|GroupRef $e |
||
95 | */ |
||
96 | 1 | $e = clone $element; |
|
97 | 1 | $e->setMax($this->getMax()); |
|
98 | 1 | $elements[$k] = $e; |
|
99 | } |
||
100 | } |
||
101 | 1 | return $elements; |
|
102 | } |
||
103 | |||
104 | public function addElement(ElementItem $element) |
||
105 | { |
||
106 | throw new BadMethodCallException("Can't add an element for a ref group"); |
||
107 | } |
||
108 | |||
109 | /** |
||
110 | * @return GroupRef |
||
111 | */ |
||
112 | 45 | public static function loadGroupRef(Group $referenced, DOMElement $node) |
|
121 | } |
||
122 | } |
||
123 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.