| Total Complexity | 3 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 3 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 19 | class DoctrineDeleteEventLogger implements EventSubscriberInterface |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * DoctrineDeleteEventLogger constructor. |
||
| 23 | * |
||
| 24 | * @param Logger $logger |
||
| 25 | */ |
||
| 26 | public function __construct(private Logger $logger) |
||
| 27 | { |
||
| 28 | } |
||
| 29 | |||
| 30 | public function savePendingLogs() |
||
| 31 | { |
||
| 32 | $this->logger->savePendingLogs(); |
||
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @return array |
||
| 37 | */ |
||
| 38 | #[\Override] |
||
| 44 | ]; |
||
| 45 | } |
||
| 46 | } |
||
| 47 |