| Conditions | 4 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 20 |
| 1 | <?php |
||
| 53 | public function getElements() |
||
| 54 | { |
||
| 55 | $elements = $this->wrapped->getElements(); |
||
| 56 | if($this->getMax()>0 || $this->getMax()===-1){ |
||
| 57 | foreach ($elements as $k => $element) { |
||
| 58 | $e = clone $element; |
||
| 59 | $e->setMax($this->getMax()); |
||
| 60 | $elements[$k] = $e; |
||
| 61 | } |
||
| 62 | } |
||
| 63 | return $elements; |
||
| 64 | } |
||
| 65 | |||
| 71 |