| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | protected function createLockFactory(Container $container): ServiceProviderInterface |
||
| 28 | { |
||
| 29 | $self = $this; |
||
| 30 | |||
| 31 | $container->offsetSet('lock_factory', function (Container $container) use ($self) { |
||
| 32 | return new LockFactory($self->createSymfonyLockFactory($container)); |
||
| 33 | }); |
||
| 34 | |||
| 35 | return $this; |
||
| 36 | } |
||
| 50 |