Skip to content

Commit

Permalink
Merge pull request #35 from stdex/patch-1
Browse files Browse the repository at this point in the history
Nullable type for setLng
  • Loading branch information
Jaburenje authored Oct 30, 2023
2 parents 2f45b3b + bdae260 commit c0c4042
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Entity/Request/Part/Orders/Sender.php
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ public function getLng(): ?float
return $this->lng;
}

public function setLng(float $lng): ?self
public function setLng(?float $lng): ?self
{
$this->lng = $lng;
return $this;
Expand Down

0 comments on commit c0c4042

Please sign in to comment.