From 5649dafe3701b6f2370e173381997092b4fc1e22 Mon Sep 17 00:00:00 2001 From: George Buckingham Date: Tue, 17 Aug 2021 18:27:08 +0100 Subject: [PATCH] Add comment for MySQL 8 GEOMCOLLECTION --- src/Engine/DatabaseEngine.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Engine/DatabaseEngine.php b/src/Engine/DatabaseEngine.php index 77ddba4..0e192f9 100644 --- a/src/Engine/DatabaseEngine.php +++ b/src/Engine/DatabaseEngine.php @@ -224,7 +224,7 @@ private function getProxyClassName(string $geometryType) : string 'COMPOUNDCURVE' => Proxy\CompoundCurveProxy::class, 'CURVE' => Proxy\CurveProxy::class, 'CURVEPOLYGON' => Proxy\CurvePolygonProxy::class, - 'GEOMCOLLECTION' => Proxy\GeometryCollectionProxy::class, + 'GEOMCOLLECTION' => Proxy\GeometryCollectionProxy::class, /* MySQL 8 - https://github.com/brick/geo/pull/33 */ 'GEOMETRY' => Proxy\GeometryProxy::class, 'GEOMETRYCOLLECTION' => Proxy\GeometryCollectionProxy::class, 'LINESTRING' => Proxy\LineStringProxy::class,