From be01ff6f7bfcd3d523b94eb78bc140459686fbc1 Mon Sep 17 00:00:00 2001 From: oprypkhantc <54406427+oprypkhantc@users.noreply.github.com> Date: Sat, 11 Apr 2026 17:35:21 +0000 Subject: [PATCH] chore: Sync changes from the template --- src/Leads/Create/LeadCreatedEvent.php | 4 +--- src/Leads/Update/LeadUpdatedEvent.php | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/src/Leads/Create/LeadCreatedEvent.php b/src/Leads/Create/LeadCreatedEvent.php index 20d06ba..2afeaeb 100644 --- a/src/Leads/Create/LeadCreatedEvent.php +++ b/src/Leads/Create/LeadCreatedEvent.php @@ -6,7 +6,5 @@ class LeadCreatedEvent { - public function __construct( - public readonly LeadDTO $lead, - ) {} + public function __construct(public readonly LeadDTO $lead) {} } diff --git a/src/Leads/Update/LeadUpdatedEvent.php b/src/Leads/Update/LeadUpdatedEvent.php index ba59590..95c5830 100644 --- a/src/Leads/Update/LeadUpdatedEvent.php +++ b/src/Leads/Update/LeadUpdatedEvent.php @@ -6,7 +6,5 @@ class LeadUpdatedEvent { - public function __construct( - public readonly LeadDTO $lead, - ) {} + public function __construct(public readonly LeadDTO $lead) {} }