| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 32 | public function __construct(DbDriverInterface $dbDriver) |
||
| 33 | { |
||
| 34 | $mapper = new Mapper( |
||
| 35 | DummyHex::class, |
||
| 36 | 'dummyhex', |
||
| 37 | 'id', |
||
| 38 | Psr11::container()->raw("_CLOSURE_NEWKEY") |
||
| 39 | ); |
||
| 40 | |||
| 41 | Psr11::container()->get('_CLOSURE_FIELDMAP_ID', $mapper); |
||
| 42 | $mapper->addFieldMap('uuid', 'uuid', Mapper::doNotUpdateClosure()); |
||
| 43 | |||
| 44 | $this->repository = new Repository($dbDriver, $mapper); |
||
| 45 | } |
||
| 46 | } |
||
| 47 |