| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 1 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 51 | public function addRawField(Field $field) |
||
| 52 | { |
||
| 53 | if (array_key_exists($field->getName(), $this->fields)) { |
||
| 54 | throw new InvalidArgumentException(sprintf( |
||
| 55 | 'Field with name "%s" already exists.', |
||
| 56 | $field->getName() |
||
| 57 | )); |
||
| 58 | } |
||
| 59 | |||
| 60 | 4 | return $this->fields[$field->getName()] = $field; |
|
| 61 | } |
||
| 62 | 4 | ||
| 92 |