Skip to content

Commit

Permalink
🩹 fix php 8.4 deprecations (#3128)
Browse files Browse the repository at this point in the history
  • Loading branch information
MrKrisKrisu authored Jan 16, 2025
1 parent 7e3e7a3 commit 7c15718
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/Http/Controllers/Backend/Support/LocationController.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ class LocationController
private ?Status $status;

public function __construct(
Trip $trip,
Stopover $origin = null,
Stopover $destination = null,
Status $status = null
Trip $trip,
?Stopover $origin = null,
?Stopover $destination = null,
?Status $status = null
) {
$this->trip = $trip;
$this->origin = $origin;
Expand Down

0 comments on commit 7c15718

Please sign in to comment.