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