Skip to content

Commit cc1a779

Browse files
committed
PHP7.3 compat
1 parent 05e9394 commit cc1a779

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/UTMPoint.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,17 @@ class UTMPoint extends ProjectedPoint
2828
/**
2929
* Zone number.
3030
*/
31-
protected int $zone;
31+
protected $zone;
3232

3333
/**
3434
* Hemisphere (N or S).
3535
*/
36-
protected string $hemisphere;
36+
protected $hemisphere;
3737

3838
/**
3939
* Base CRS.
4040
*/
41-
protected Geographic $baseCRS;
41+
protected $baseCRS;
4242

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

0 commit comments

Comments
 (0)