This commit is contained in:
Philipp Lang 2023-05-16 16:19:14 +02:00
parent 41f05211da
commit 255a7819f5
1 changed files with 1 additions and 4 deletions

View File

@ -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;
}
/**