| Total Complexity | 4 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | #[AsMessageHandler] |
||
| 14 | final class UpdateActivityLogHandler |
||
| 15 | { |
||
| 16 | use ElasticNormalizationContextTrait; |
||
| 17 | |||
| 18 | public function __construct( |
||
| 19 | private readonly ActivityLogProcessorInterface $activityLogProcessor, |
||
| 20 | private readonly CurrentDataTrackerProviderInterface $currentDataTrackerProvider, |
||
| 21 | private readonly LoggableContextFactory $loggableContextFactory |
||
| 22 | ) { |
||
| 23 | } |
||
| 24 | |||
| 25 | public function __invoke(UpdateActivityLogMessageInterface $message): void |
||
| 41 | } |
||
| 42 | } |
||
| 43 |