| Conditions | 3 |
| Paths | 3 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 11 |
| Ratio | 100 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 45 | View Code Duplication | protected function isOK() |
|
| 46 | { |
||
| 47 | if (!is_array($this->value)) { |
||
| 48 | throw new \InvalidArgumentException( |
||
| 49 | 'The provided value for ' . __CLASS__ . ' must be an array of type xsNMTOKEN.' |
||
| 50 | ); |
||
| 51 | } |
||
| 52 | foreach ($this->value as $v) { |
||
| 53 | $v->isOKInternal(); |
||
| 54 | } |
||
| 55 | } |
||
| 56 | } |
||
| 57 |