| Total Complexity | 2 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class EntityManagerFactory implements EntityManagerFactoryInterface |
||
| 11 | { |
||
| 12 | 2 | public function __construct( |
|
| 13 | private ConnectionFactoryInterface $connectionFactory, |
||
| 14 | private Configuration $configuration |
||
| 15 | 2 | ) {} |
|
| 16 | |||
| 17 | 2 | public function createEntityManager(Connection $connection = null): EntityManagerInterface |
|
| 22 | 2 | ); |
|
| 23 | } |
||
| 25 |