From 95073cf6a02aef6e6e88eae532a34468aefb301d Mon Sep 17 00:00:00 2001 From: Doug Wright Date: Fri, 12 Nov 2021 13:06:42 +0000 Subject: [PATCH] Remove unused function --- src/CoordinateReferenceSystem/CoordinateReferenceSystem.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/CoordinateReferenceSystem/CoordinateReferenceSystem.php b/src/CoordinateReferenceSystem/CoordinateReferenceSystem.php index c01a0b886..36e317913 100644 --- a/src/CoordinateReferenceSystem/CoordinateReferenceSystem.php +++ b/src/CoordinateReferenceSystem/CoordinateReferenceSystem.php @@ -8,7 +8,6 @@ namespace PHPCoord\CoordinateReferenceSystem; -use function array_merge; use PHPCoord\CoordinateSystem\CoordinateSystem; use PHPCoord\Datum\Datum; use PHPCoord\Geometry\BoundingArea; @@ -102,9 +101,4 @@ public static function fromSRID(string $srid): self return self::$cachedObjects[$srid]; } - - public static function getSupportedSRIDs(): array - { - return array_merge(Compound::getSupportedSRIDs(), Geocentric::getSupportedSRIDs(), Geographic2D::getSupportedSRIDs(), Geographic3D::getSupportedSRIDs(), Projected::getSupportedSRIDs(), Vertical::getSupportedSRIDs()); - } }