| Total Complexity | 6 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Coverage | 54.55% |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | trait FillFromArrayTrait |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @param array $data |
||
| 17 | * @param array $forbidden |
||
| 18 | * @param NameConverterInterface|null $converter |
||
| 19 | * |
||
| 20 | * @throws BadArgumentException |
||
| 21 | */ |
||
| 22 | 2 | public function fill(array $data, array $forbidden = [], NameConverterInterface $converter = null) |
|
| 42 |