| Conditions | 3 |
| Paths | 3 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | 4 | public function findByName($name) |
|
| 19 | { |
||
| 20 | 4 | $this->rewind(); |
|
| 21 | 4 | while ($this->valid()) { |
|
| 22 | /** @var FieldInterface $field */ |
||
| 23 | 3 | $field = $this->current(); |
|
| 24 | 3 | if ($field->getName() == $name) { |
|
| 25 | 3 | return $field; |
|
| 26 | } |
||
| 27 | 1 | $this->next(); |
|
| 28 | } |
||
| 29 | 1 | $this->rewind(); |
|
| 30 | 1 | return null; |
|
| 31 | } |
||
| 32 | |||
| 66 | } |