Skip to content

Commit

Permalink
🐛 Allow null for Geocode lat/lng
Browse files Browse the repository at this point in the history
  • Loading branch information
tgeorgel committed Dec 14, 2022
1 parent 86f6d8c commit 0c06c42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Entities/Geocode.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ class Geocode extends FlexibleDataTransferObject implements EntityContract
/**
* Geocode latitude.
*
* @var int|float
* @var int|float|null
*/
public $lat;

/**
* Geocode longitude.
*
* @var int|float
* @var int|float|null
*/
public $lng;
}

0 comments on commit 0c06c42

Please sign in to comment.