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) {} }