Skip to content

Commit

Permalink
Remove TODO comments from codebase
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeWithDennis committed Jul 5, 2024
1 parent 1bf44bb commit a8dc4af
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Components/Concerns/HasAvoid.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Components/Concerns/HasCenter.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion src/Components/Concerns/HasLocation.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit a8dc4af

Please sign in to comment.