| Conditions | 3 |
| Paths | 3 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 11 |
| Ratio | 100 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | View Code Duplication | protected function isOK() |
|
| 29 | { |
||
| 30 | if (!is_array($this->value)) { |
||
| 31 | throw new \InvalidArgumentException( |
||
| 32 | 'The provided value for ' . __CLASS__ . ' must be an array of type xsENTITY.' |
||
| 33 | ); |
||
| 34 | } |
||
| 35 | foreach ($this->value as $v) { |
||
| 36 | $v->isOKInternal(); |
||
| 37 | } |
||
| 38 | } |
||
| 39 | } |
||
| 40 |