Skip to content

Commit

Permalink
PHP7.3 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdoug committed Mar 3, 2021
1 parent 05e9394 commit cc1a779
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/UTMPoint.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,17 @@ class UTMPoint extends ProjectedPoint
/**
* Zone number.
*/
protected int $zone;
protected $zone;

/**
* Hemisphere (N or S).
*/
protected string $hemisphere;
protected $hemisphere;

/**
* Base CRS.
*/
protected Geographic $baseCRS;
protected $baseCRS;

public function __construct(Length $easting, Length $northing, int $zone, string $hemisphere, Geographic $crs, ?DateTimeInterface $epoch = null)
{
Expand Down

0 comments on commit cc1a779

Please sign in to comment.