From 255a7819f54b204c4da10f534a4bbb8b9fb3776c Mon Sep 17 00:00:00 2001 From: Philipp Lang Date: Tue, 16 May 2023 16:19:14 +0200 Subject: [PATCH] Lint --- src/FillCoordsJob.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/FillCoordsJob.php b/src/FillCoordsJob.php index b195eee..826f491 100644 --- a/src/FillCoordsJob.php +++ b/src/FillCoordsJob.php @@ -15,16 +15,13 @@ class FillCoordsJob implements ShouldQueue use Queueable; use SerializesModels; - public Geolocatable $model; - /** * Create a new job instance. * * @return void */ - public function __construct(Geolocatable $model) + public function __construct(public Geolocatable $model) { - $this->model = $model; } /**