| Total Complexity | 3 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class DbEntityManagerFactory implements SessionFactoryInterface |
||
| 11 | { |
||
| 12 | protected $idGenerator; |
||
| 13 | |||
| 14 | public function __construct(IdGeneratorInterface $idGenerator) |
||
| 15 | { |
||
| 16 | $this->idGenerator = $idGenerator; |
||
| 17 | } |
||
| 18 | |||
| 19 | public function getSessionType(): string |
||
| 22 | } |
||
| 23 | |||
| 24 | public function openSession(): DbEntityManager |
||
| 28 | } |
||
| 29 | } |
||
| 30 |