Total Complexity | 4 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | final class OrderedDoctrineEventsRecorder |
||
18 | { |
||
19 | private Aggregator $eventsAggregator; |
||
20 | |||
21 | 2 | public function __construct(Aggregator $eventAggregator) |
|
22 | { |
||
23 | 2 | $this->eventsAggregator = $eventAggregator; |
|
24 | 2 | } |
|
25 | |||
26 | 2 | public function onFlush(OnFlushEventArgs $eventArgs): void |
|
41 | 2 | } |
|
42 | |||
43 | /** |
||
44 | * @return EventAware[] |
||
45 | */ |
||
46 | 2 | private static function getEventAwareEntities(UnitOfWork $unitOfWork): array |
|
57 |
This function has been deprecated. The supplier of the function has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.