| 1 | <?php |
||
| 12 | class FieldCollection extends AbstractCollection implements CollectionInterface |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @param $name |
||
| 16 | * @return FieldInterface|null |
||
| 17 | */ |
||
| 18 | 4 | public function findByName($name) |
|
| 32 | |||
| 33 | /** |
||
| 34 | * @param $name |
||
| 35 | * @return bool |
||
| 36 | */ |
||
| 37 | 1 | public function removeByName($name): bool |
|
| 58 | |||
| 59 | /** |
||
| 60 | * @return FieldInterface |
||
| 61 | */ |
||
| 62 | 51 | public function current(): FieldInterface |
|
| 66 | } |