| Conditions | 3 |
| Paths | 3 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | 21 | public function __construct(array $values) |
|
| 13 | { |
||
| 14 | 21 | foreach ($values as $k => $v) { |
|
| 15 | 20 | if (!method_exists($this, $name = 'set'.$k)) { |
|
| 16 | 1 | throw new \RuntimeException(sprintf('Unknown key "%s" for annotation "@%s".', $k, get_class($this))); |
|
| 17 | } |
||
| 18 | |||
| 19 | 19 | $this->$name($v); |
|
| 20 | } |
||
| 21 | 20 | } |
|
| 22 | } |
||
| 23 |