| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | final class BaseProvider implements DataProviderInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var string |
||
| 12 | */ |
||
| 13 | private $entityClassName; |
||
| 14 | |||
| 15 | 2 | public function __construct(string $entityClassName) |
|
| 18 | 2 | } |
|
| 19 | |||
| 20 | /** |
||
| 21 | * @return array |
||
| 22 | * @throws \ReflectionException |
||
| 23 | */ |
||
| 24 | 2 | public function provide(): array |
|
| 33 |