| Total Complexity | 6 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Coverage | 70% |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class FakerValueProvider implements ValueProviderInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var string |
||
| 12 | */ |
||
| 13 | private $entityClassName; |
||
| 14 | /** |
||
| 15 | * @var IdHandlerInterface |
||
| 16 | */ |
||
| 17 | private $idHandler; |
||
| 18 | |||
| 19 | 9 | public function __construct(string $entityClassName, IdHandlerInterface $idHandler) |
|
| 23 | 9 | } |
|
| 24 | |||
| 25 | 3 | public function getValue(string $type, bool $generated) |
|
| 47 |