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