| Total Complexity | 1 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | abstract class DoctrineEventsDispatcher |
||
| 11 | { |
||
| 12 | protected Releaser $releaser; |
||
| 13 | |||
| 14 | protected EventDispatcherInterface $dispatcher; |
||
| 15 | |||
| 16 | public function __construct(Releaser $releaser, EventDispatcherInterface $dispatcher) |
||
| 20 | 1 | } |
|
| 21 | 1 | ||
| 22 | 1 | abstract public function postFlush(): void; |
|
| 23 | } |
||
| 24 |