diff --git a/src/Components/Concerns/HasAvoid.php b/src/Components/Concerns/HasAvoid.php index ceff13f..e074010 100644 --- a/src/Components/Concerns/HasAvoid.php +++ b/src/Components/Concerns/HasAvoid.php @@ -6,7 +6,7 @@ trait HasAvoid { - protected Closure | null | array $avoid = null; // tolls|ferried|highways + protected Closure | null | array $avoid = null; public function avoid(Closure | null | array $avoid): static { diff --git a/src/Components/Concerns/HasCenter.php b/src/Components/Concerns/HasCenter.php index 098cbe7..be3bf9e 100644 --- a/src/Components/Concerns/HasCenter.php +++ b/src/Components/Concerns/HasCenter.php @@ -8,7 +8,7 @@ trait HasCenter { protected Closure | string | null $center = null; - public function center(Closure | string | null $center): static // TODO: Replace with lat and lng + public function center(Closure | string | null $center): static { $this->center = $center; diff --git a/src/Components/Concerns/HasLocation.php b/src/Components/Concerns/HasLocation.php index c4691ce..83c5e86 100644 --- a/src/Components/Concerns/HasLocation.php +++ b/src/Components/Concerns/HasLocation.php @@ -8,7 +8,7 @@ trait HasLocation { protected Closure | string | null $location = null; - public function location(Closure | string | null $location): static // TODO: Split into 2 methods lat and lng + public function location(Closure | string | null $location): static { $this->location = $location;