├── .codeclimate.yml ├── .coveralls.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── INSTALL.md ├── LICENSE ├── README.md ├── TODO.md ├── composer.json ├── doc ├── common.md ├── common │ ├── GeometryType.md │ ├── ST_Area.md │ ├── ST_AsBinary.md │ ├── ST_AsText.md │ ├── ST_Buffer.md │ ├── ST_Centroid.md │ ├── ST_Contains.md │ ├── ST_ConvexHull.md │ ├── ST_Crosses.md │ ├── ST_Difference.md │ ├── ST_Dimension.md │ ├── ST_Disjoint.md │ ├── ST_Distance.md │ ├── ST_EndPoint.md │ ├── ST_Envelope.md │ ├── ST_Equals.md │ ├── ST_ExteriorRing.md │ ├── ST_GeoHash.md │ ├── ST_GeomCollFromText.md │ ├── ST_GeomFromGeoJSON.md │ ├── ST_GeomFromText.md │ ├── ST_GeomFromWKB.md │ ├── ST_GeometryN.md │ ├── ST_InteriorRingN.md │ ├── ST_Intersection.md │ ├── ST_Intersects.md │ ├── ST_IsClosed.md │ ├── ST_IsEmpty.md │ ├── ST_IsSimple.md │ ├── ST_IsValid.md │ ├── ST_Length.md │ ├── ST_LineFromText.md │ ├── ST_LineFromWKB.md │ ├── ST_MLineFromText.md │ ├── ST_MLineFromWKB.md │ ├── ST_MPointFromText.md │ ├── ST_MPointFromWKB.md │ ├── ST_MPolyFromText.md │ ├── ST_MPolyFromWKB.md │ ├── ST_MakeEnvelope.md │ ├── ST_NumGeometries.md │ ├── ST_NumInteriorRing.md │ ├── ST_NumPoints.md │ ├── ST_Overlaps.md │ ├── ST_PointFromGeoHash.md │ ├── ST_PointFromText.md │ ├── ST_PointFromWKB.md │ ├── ST_PointN.md │ ├── ST_PolyFromText.md │ ├── ST_PolyFromWKB.md │ ├── ST_SRID.md │ ├── ST_StartPoint.md │ ├── ST_SymDifference.md │ ├── ST_Touches.md │ ├── ST_Union.md │ ├── ST_Within.md │ ├── ST_X.md │ └── ST_Y.md ├── configuration.md ├── index.md ├── install.md ├── mysql.md └── postgresql.md ├── lib └── CrEOF │ └── Spatial │ ├── DBAL │ ├── Platform │ │ ├── AbstractPlatform.php │ │ ├── MySql.php │ │ ├── PlatformInterface.php │ │ └── PostgreSql.php │ └── Types │ │ ├── AbstractSpatialType.php │ │ ├── Geography │ │ ├── LineStringType.php │ │ ├── PointType.php │ │ └── PolygonType.php │ │ ├── GeographyType.php │ │ ├── Geometry │ │ ├── LineStringType.php │ │ ├── MultiPolygonType.php │ │ ├── PointType.php │ │ └── PolygonType.php │ │ └── GeometryType.php │ ├── Exception │ ├── InvalidValueException.php │ └── UnsupportedPlatformException.php │ ├── ORM │ └── Query │ │ ├── AST │ │ └── Functions │ │ │ ├── AbstractSpatialDQLFunction.php │ │ │ ├── MySql │ │ │ ├── Area.php │ │ │ ├── AsBinary.php │ │ │ ├── AsText.php │ │ │ ├── Buffer.php │ │ │ ├── Centroid.php │ │ │ ├── Contains.php │ │ │ ├── Crosses.php │ │ │ ├── Dimension.php │ │ │ ├── Disjoint.php │ │ │ ├── Distance.php │ │ │ ├── DistanceFromMultyLine.php │ │ │ ├── EndPoint.php │ │ │ ├── Envelope.php │ │ │ ├── Equals.php │ │ │ ├── ExteriorRing.php │ │ │ ├── GLength.php │ │ │ ├── GeodistPt.php │ │ │ ├── GeomFromText.php │ │ │ ├── GeometryType.php │ │ │ ├── InteriorRingN.php │ │ │ ├── Intersects.php │ │ │ ├── IsClosed.php │ │ │ ├── IsEmpty.php │ │ │ ├── IsSimple.php │ │ │ ├── LineString.php │ │ │ ├── LineStringFromWKB.php │ │ │ ├── MBRContains.php │ │ │ ├── MBRDisjoint.php │ │ │ ├── MBREqual.php │ │ │ ├── MBRIntersects.php │ │ │ ├── MBROverlaps.php │ │ │ ├── MBRTouches.php │ │ │ ├── MBRWithin.php │ │ │ ├── NumInteriorRings.php │ │ │ ├── NumPoints.php │ │ │ ├── Overlaps.php │ │ │ ├── Point.php │ │ │ ├── PointFromWKB.php │ │ │ ├── PointN.php │ │ │ ├── SRID.php │ │ │ ├── STBuffer.php │ │ │ ├── STContains.php │ │ │ ├── STCrosses.php │ │ │ ├── STDisjoint.php │ │ │ ├── STDistance.php │ │ │ ├── STDistanceSphere.php │ │ │ ├── STEquals.php │ │ │ ├── STGeomFromText │ │ │ ├── STGeomFromText.php │ │ │ ├── STIntersects.php │ │ │ ├── STOverlaps.php │ │ │ ├── STTouches.php │ │ │ ├── STWithin.php │ │ │ ├── StartPoint.php │ │ │ ├── Touches.php │ │ │ ├── Within.php │ │ │ ├── X.php │ │ │ └── Y.php │ │ │ ├── PostgreSql │ │ │ ├── Geometry.php │ │ │ ├── STArea.php │ │ │ ├── STAsBinary.php │ │ │ ├── STAsGeoJson.php │ │ │ ├── STAsText.php │ │ │ ├── STAzimuth.php │ │ │ ├── STBoundary.php │ │ │ ├── STBuffer.php │ │ │ ├── STCentroid.php │ │ │ ├── STClosestPoint.php │ │ │ ├── STCollect.php │ │ │ ├── STContains.php │ │ │ ├── STContainsProperly.php │ │ │ ├── STCoveredBy.php │ │ │ ├── STCovers.php │ │ │ ├── STCrosses.php │ │ │ ├── STDWithin.php │ │ │ ├── STDifference.php │ │ │ ├── STDisjoint.php │ │ │ ├── STDistance.php │ │ │ ├── STDistanceSphere.php │ │ │ ├── STEndPoint.php │ │ │ ├── STEnvelope.php │ │ │ ├── STExpand.php │ │ │ ├── STExtent.php │ │ │ ├── STGeographyFromText.php │ │ │ ├── STGeomFromEWKT.php │ │ │ ├── STGeomFromText.php │ │ │ ├── STGeometryN.php │ │ │ ├── STIntersection.php │ │ │ ├── STIntersects.php │ │ │ ├── STLength.php │ │ │ ├── STLineCrossingDirection.php │ │ │ ├── STLineInterpolatePoint.php │ │ │ ├── STLineLocatePoint.php │ │ │ ├── STLineSubstring.php │ │ │ ├── STMakeBox2D.php │ │ │ ├── STMakeEnvelope.php │ │ │ ├── STMakeLine.php │ │ │ ├── STMakePoint.php │ │ │ ├── STOverlaps.php │ │ │ ├── STPerimeter.php │ │ │ ├── STPoint.php │ │ │ ├── STScale.php │ │ │ ├── STSetSRID.php │ │ │ ├── STSimplify.php │ │ │ ├── STSnapToGrid.php │ │ │ ├── STSplit.php │ │ │ ├── STStartPoint.php │ │ │ ├── STSummary.php │ │ │ ├── STTouches.php │ │ │ ├── STTransform.php │ │ │ ├── STTranslate.php │ │ │ ├── STUnion.php │ │ │ ├── STWithin.php │ │ │ ├── STX.php │ │ │ └── STY.php │ │ │ └── ReturnsGeometryInterface.php │ │ └── GeometryWalker.php │ └── PHP │ └── Types │ ├── AbstractGeometry.php │ ├── AbstractLineString.php │ ├── AbstractMultiLineString.php │ ├── AbstractMultiPoint.php │ ├── AbstractMultiPolygon.php │ ├── AbstractPoint.php │ ├── AbstractPolygon.php │ ├── Geography │ ├── GeographyInterface.php │ ├── LineString.php │ ├── Point.php │ └── Polygon.php │ └── Geometry │ ├── GeometryInterface.php │ ├── LineString.php │ ├── MultiLineString.php │ ├── MultiPoint.php │ ├── MultiPolygon.php │ ├── Point.php │ └── Polygon.php ├── phpunit.xml.dist └── tests ├── CrEOF └── Spatial │ └── Tests │ ├── DBAL │ ├── Platform │ │ └── PlatformTest.php │ └── Types │ │ ├── Geography │ │ ├── GeoPointSridTest.php │ │ └── GeoPolygonTypeTest.php │ │ ├── GeographyTypeTest.php │ │ ├── Geometry │ │ ├── LineStringTypeTest.php │ │ ├── MultiPolygonTypeTest.php │ │ ├── PointTypeTest.php │ │ └── PolygonTypeTest.php │ │ ├── GeometryTypeTest.php │ │ └── SchemaTest.php │ ├── FileSQLLogger.php │ ├── Fixtures │ ├── GeoLineStringEntity.php │ ├── GeoPointSridEntity.php │ ├── GeoPolygonEntity.php │ ├── GeographyEntity.php │ ├── GeometryEntity.php │ ├── LineStringEntity.php │ ├── MultiPolygonEntity.php │ ├── NoHintGeometryEntity.php │ ├── PointEntity.php │ └── PolygonEntity.php │ ├── ORM │ └── Query │ │ ├── AST │ │ └── Functions │ │ │ ├── MySql │ │ │ ├── AreaTest.php │ │ │ ├── AsBinaryTest.php │ │ │ ├── AsTextTest.php │ │ │ ├── ContainsTest.php │ │ │ ├── DisjointTest.php │ │ │ ├── EnvelopeTest.php │ │ │ ├── GLengthTest.php │ │ │ ├── GeomFromTextTest.php │ │ │ ├── MBRContainsTest.php │ │ │ ├── MBRDisjointTest.php │ │ │ ├── STDistanceSphereTest.php │ │ │ ├── STDistanceTest.php │ │ │ ├── STGeomFromTextTest.php │ │ │ └── StartPointTest.php │ │ │ └── PostgreSql │ │ │ ├── GeometryTest.php │ │ │ ├── STAreaTest.php │ │ │ ├── STAsBinaryTest.php │ │ │ ├── STAsTextTest.php │ │ │ ├── STCentroidTest.php │ │ │ ├── STClosestPointTest.php │ │ │ ├── STCollectTest.php │ │ │ ├── STContainsProperlyTest.php │ │ │ ├── STContainsTest.php │ │ │ ├── STCoveredByTest.php │ │ │ ├── STCoversTest.php │ │ │ ├── STCrossesTest.php │ │ │ ├── STDisjointTest.php │ │ │ ├── STDistanceSphereTest.php │ │ │ ├── STDistanceTest.php │ │ │ ├── STEnvelopeTest.php │ │ │ ├── STGeomFromTextTest.php │ │ │ ├── STLengthTest.php │ │ │ ├── STLineCrossingDirectionTest.php │ │ │ ├── STMakeEnvelopeTest.php │ │ │ ├── STOverlapsTest.php │ │ │ ├── STSnapToGridTest.php │ │ │ ├── STStartPointTest.php │ │ │ └── STSummaryTest.php │ │ ├── GeometryWalkerTest.php │ │ └── WrappingTest.php │ ├── OrmMockTestCase.php │ ├── OrmTestCase.php │ ├── PHP │ └── Types │ │ ├── Geography │ │ └── PointTest.php │ │ └── Geometry │ │ ├── LineStringTest.php │ │ ├── MultiLineStringTest.php │ │ ├── MultiPointTest.php │ │ ├── MultiPolygonTest.php │ │ ├── PointTest.php │ │ └── PolygonTest.php │ └── TestInit.php └── travis ├── composer.orm2.3.json ├── composer.orm2.4.json ├── composer.orm2.5.json ├── travis.mysql.xml └── travis.pgsql.xml /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/.coveralls.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/composer.json -------------------------------------------------------------------------------- /doc/common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/doc/common.md -------------------------------------------------------------------------------- /doc/common/GeometryType.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_Area.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/doc/common/ST_Area.md -------------------------------------------------------------------------------- /doc/common/ST_AsBinary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/doc/common/ST_AsBinary.md -------------------------------------------------------------------------------- /doc/common/ST_AsText.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/doc/common/ST_AsText.md -------------------------------------------------------------------------------- /doc/common/ST_Buffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/doc/common/ST_Buffer.md -------------------------------------------------------------------------------- /doc/common/ST_Centroid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/doc/common/ST_Centroid.md -------------------------------------------------------------------------------- /doc/common/ST_Contains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/doc/common/ST_Contains.md -------------------------------------------------------------------------------- /doc/common/ST_ConvexHull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/doc/common/ST_ConvexHull.md -------------------------------------------------------------------------------- /doc/common/ST_Crosses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/doc/common/ST_Crosses.md -------------------------------------------------------------------------------- /doc/common/ST_Difference.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_Dimension.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_Disjoint.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_Distance.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_EndPoint.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_Envelope.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_Equals.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_ExteriorRing.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_GeoHash.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_GeomCollFromText.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_GeomFromGeoJSON.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_GeomFromText.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_GeomFromWKB.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_GeometryN.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_InteriorRingN.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_Intersection.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_Intersects.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_IsClosed.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_IsEmpty.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_IsSimple.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_IsValid.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_Length.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_LineFromText.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_LineFromWKB.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_MLineFromText.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_MLineFromWKB.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_MPointFromText.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_MPointFromWKB.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_MPolyFromText.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_MPolyFromWKB.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_MakeEnvelope.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_NumGeometries.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_NumInteriorRing.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_NumPoints.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_Overlaps.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_PointFromGeoHash.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_PointFromText.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_PointFromWKB.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_PointN.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_PolyFromText.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_PolyFromWKB.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_SRID.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_StartPoint.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_SymDifference.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_Touches.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_Union.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_Within.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_X.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/common/ST_Y.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/doc/common/ST_Y.md -------------------------------------------------------------------------------- /doc/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/doc/configuration.md -------------------------------------------------------------------------------- /doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/doc/index.md -------------------------------------------------------------------------------- /doc/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/doc/install.md -------------------------------------------------------------------------------- /doc/mysql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/doc/mysql.md -------------------------------------------------------------------------------- /doc/postgresql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/doc/postgresql.md -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/DBAL/Platform/AbstractPlatform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/DBAL/Platform/AbstractPlatform.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/DBAL/Platform/MySql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/DBAL/Platform/MySql.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/DBAL/Platform/PlatformInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/DBAL/Platform/PlatformInterface.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/DBAL/Platform/PostgreSql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/DBAL/Platform/PostgreSql.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/DBAL/Types/AbstractSpatialType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/DBAL/Types/AbstractSpatialType.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/DBAL/Types/Geography/LineStringType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/DBAL/Types/Geography/LineStringType.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/DBAL/Types/Geography/PointType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/DBAL/Types/Geography/PointType.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/DBAL/Types/Geography/PolygonType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/DBAL/Types/Geography/PolygonType.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/DBAL/Types/GeographyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/DBAL/Types/GeographyType.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/DBAL/Types/Geometry/LineStringType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/DBAL/Types/Geometry/LineStringType.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/DBAL/Types/Geometry/MultiPolygonType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/DBAL/Types/Geometry/MultiPolygonType.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/DBAL/Types/Geometry/PointType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/DBAL/Types/Geometry/PointType.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/DBAL/Types/Geometry/PolygonType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/DBAL/Types/Geometry/PolygonType.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/DBAL/Types/GeometryType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/DBAL/Types/GeometryType.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/Exception/InvalidValueException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/Exception/InvalidValueException.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/Exception/UnsupportedPlatformException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/Exception/UnsupportedPlatformException.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/AbstractSpatialDQLFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/AbstractSpatialDQLFunction.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/Area.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/Area.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/AsBinary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/AsBinary.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/AsText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/AsText.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/Buffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/Buffer.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/Centroid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/Centroid.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/Contains.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/Contains.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/Crosses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/Crosses.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/Dimension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/Dimension.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/Disjoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/Disjoint.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/Distance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/Distance.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/DistanceFromMultyLine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/DistanceFromMultyLine.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/EndPoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/EndPoint.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/Envelope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/Envelope.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/Equals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/Equals.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/ExteriorRing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/ExteriorRing.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/GLength.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/GLength.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/GeodistPt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/GeodistPt.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/GeomFromText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/GeomFromText.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/GeometryType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/GeometryType.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/InteriorRingN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/InteriorRingN.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/Intersects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/Intersects.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/IsClosed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/IsClosed.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/IsEmpty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/IsEmpty.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/IsSimple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/IsSimple.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/LineString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/LineString.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/LineStringFromWKB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/LineStringFromWKB.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/MBRContains.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/MBRContains.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/MBRDisjoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/MBRDisjoint.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/MBREqual.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/MBREqual.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/MBRIntersects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/MBRIntersects.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/MBROverlaps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/MBROverlaps.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/MBRTouches.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/MBRTouches.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/MBRWithin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/MBRWithin.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/NumInteriorRings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/NumInteriorRings.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/NumPoints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/NumPoints.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/Overlaps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/Overlaps.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/Point.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/Point.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/PointFromWKB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/PointFromWKB.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/PointN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/PointN.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/SRID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/SRID.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/STBuffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/STBuffer.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/STContains.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/STContains.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/STCrosses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/STCrosses.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/STDisjoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/STDisjoint.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/STDistance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/STDistance.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/STDistanceSphere.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/STDistanceSphere.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/STEquals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/STEquals.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/STGeomFromText: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/STGeomFromText -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/STGeomFromText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/STGeomFromText.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/STIntersects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/STIntersects.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/STOverlaps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/STOverlaps.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/STTouches.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/STTouches.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/STWithin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/STWithin.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/StartPoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/StartPoint.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/Touches.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/Touches.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/Within.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/Within.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/X.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/X.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/Y.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/MySql/Y.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/Geometry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/Geometry.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STArea.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STArea.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STAsBinary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STAsBinary.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STAsGeoJson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STAsGeoJson.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STAsText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STAsText.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STAzimuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STAzimuth.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STBoundary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STBoundary.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STBuffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STBuffer.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STCentroid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STCentroid.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STClosestPoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STClosestPoint.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STCollect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STCollect.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STContains.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STContains.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STContainsProperly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STContainsProperly.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STCoveredBy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STCoveredBy.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STCovers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STCovers.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STCrosses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STCrosses.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STDWithin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STDWithin.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STDifference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STDifference.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STDisjoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STDisjoint.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STDistance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STDistance.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STDistanceSphere.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STDistanceSphere.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STEndPoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STEndPoint.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STEnvelope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STEnvelope.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STExpand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STExpand.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STExtent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STExtent.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STGeographyFromText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STGeographyFromText.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STGeomFromEWKT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STGeomFromEWKT.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STGeomFromText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STGeomFromText.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STGeometryN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STGeometryN.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STIntersection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STIntersection.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STIntersects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STIntersects.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STLength.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STLength.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STLineCrossingDirection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STLineCrossingDirection.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STLineInterpolatePoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STLineInterpolatePoint.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STLineLocatePoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STLineLocatePoint.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STLineSubstring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STLineSubstring.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STMakeBox2D.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STMakeBox2D.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STMakeEnvelope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STMakeEnvelope.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STMakeLine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STMakeLine.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STMakePoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STMakePoint.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STOverlaps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STOverlaps.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STPerimeter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STPerimeter.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STPoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STPoint.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STScale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STScale.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STSetSRID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STSetSRID.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STSimplify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STSimplify.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STSnapToGrid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STSnapToGrid.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STSplit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STSplit.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STStartPoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STStartPoint.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STSummary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STSummary.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STTouches.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STTouches.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STTransform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STTransform.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STTranslate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STTranslate.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STUnion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STUnion.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STWithin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STWithin.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STX.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STX.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STY.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STY.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/AST/Functions/ReturnsGeometryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/AST/Functions/ReturnsGeometryInterface.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/ORM/Query/GeometryWalker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/ORM/Query/GeometryWalker.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/PHP/Types/AbstractGeometry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/PHP/Types/AbstractGeometry.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/PHP/Types/AbstractLineString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/PHP/Types/AbstractLineString.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/PHP/Types/AbstractMultiLineString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/PHP/Types/AbstractMultiLineString.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/PHP/Types/AbstractMultiPoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/PHP/Types/AbstractMultiPoint.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/PHP/Types/AbstractMultiPolygon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/PHP/Types/AbstractMultiPolygon.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/PHP/Types/AbstractPoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/PHP/Types/AbstractPoint.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/PHP/Types/AbstractPolygon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/PHP/Types/AbstractPolygon.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/PHP/Types/Geography/GeographyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/PHP/Types/Geography/GeographyInterface.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/PHP/Types/Geography/LineString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/PHP/Types/Geography/LineString.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/PHP/Types/Geography/Point.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/PHP/Types/Geography/Point.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/PHP/Types/Geography/Polygon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/PHP/Types/Geography/Polygon.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/PHP/Types/Geometry/GeometryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/PHP/Types/Geometry/GeometryInterface.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/PHP/Types/Geometry/LineString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/PHP/Types/Geometry/LineString.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/PHP/Types/Geometry/MultiLineString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/PHP/Types/Geometry/MultiLineString.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/PHP/Types/Geometry/MultiPoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/PHP/Types/Geometry/MultiPoint.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/PHP/Types/Geometry/MultiPolygon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/PHP/Types/Geometry/MultiPolygon.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/PHP/Types/Geometry/Point.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/PHP/Types/Geometry/Point.php -------------------------------------------------------------------------------- /lib/CrEOF/Spatial/PHP/Types/Geometry/Polygon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/lib/CrEOF/Spatial/PHP/Types/Geometry/Polygon.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/DBAL/Platform/PlatformTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/DBAL/Platform/PlatformTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/DBAL/Types/Geography/GeoPointSridTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/DBAL/Types/Geography/GeoPointSridTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/DBAL/Types/Geography/GeoPolygonTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/DBAL/Types/Geography/GeoPolygonTypeTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/DBAL/Types/GeographyTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/DBAL/Types/GeographyTypeTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/DBAL/Types/Geometry/LineStringTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/DBAL/Types/Geometry/LineStringTypeTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/DBAL/Types/Geometry/MultiPolygonTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/DBAL/Types/Geometry/MultiPolygonTypeTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/DBAL/Types/Geometry/PointTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/DBAL/Types/Geometry/PointTypeTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/DBAL/Types/Geometry/PolygonTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/DBAL/Types/Geometry/PolygonTypeTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/DBAL/Types/GeometryTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/DBAL/Types/GeometryTypeTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/DBAL/Types/SchemaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/DBAL/Types/SchemaTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/FileSQLLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/FileSQLLogger.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/Fixtures/GeoLineStringEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/Fixtures/GeoLineStringEntity.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/Fixtures/GeoPointSridEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/Fixtures/GeoPointSridEntity.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/Fixtures/GeoPolygonEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/Fixtures/GeoPolygonEntity.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/Fixtures/GeographyEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/Fixtures/GeographyEntity.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/Fixtures/GeometryEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/Fixtures/GeometryEntity.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/Fixtures/LineStringEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/Fixtures/LineStringEntity.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/Fixtures/MultiPolygonEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/Fixtures/MultiPolygonEntity.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/Fixtures/NoHintGeometryEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/Fixtures/NoHintGeometryEntity.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/Fixtures/PointEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/Fixtures/PointEntity.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/Fixtures/PolygonEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/Fixtures/PolygonEntity.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/MySql/AreaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/MySql/AreaTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/MySql/AsBinaryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/MySql/AsBinaryTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/MySql/AsTextTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/MySql/AsTextTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/MySql/ContainsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/MySql/ContainsTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/MySql/DisjointTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/MySql/DisjointTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/MySql/EnvelopeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/MySql/EnvelopeTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/MySql/GLengthTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/MySql/GLengthTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/MySql/GeomFromTextTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/MySql/GeomFromTextTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/MySql/MBRContainsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/MySql/MBRContainsTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/MySql/MBRDisjointTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/MySql/MBRDisjointTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/MySql/STDistanceSphereTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/MySql/STDistanceSphereTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/MySql/STDistanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/MySql/STDistanceTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/MySql/STGeomFromTextTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/MySql/STGeomFromTextTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/MySql/StartPointTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/MySql/StartPointTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/GeometryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/GeometryTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STAreaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STAreaTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STAsBinaryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STAsBinaryTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STAsTextTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STAsTextTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STCentroidTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STCentroidTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STClosestPointTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STClosestPointTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STCollectTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STCollectTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STContainsProperlyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STContainsProperlyTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STContainsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STContainsTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STCoveredByTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STCoveredByTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STCoversTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STCoversTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STCrossesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STCrossesTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STDisjointTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STDisjointTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STDistanceSphereTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STDistanceSphereTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STDistanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STDistanceTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STEnvelopeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STEnvelopeTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STGeomFromTextTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STGeomFromTextTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STLengthTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STLengthTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STLineCrossingDirectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STLineCrossingDirectionTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STMakeEnvelopeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STMakeEnvelopeTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STOverlapsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STOverlapsTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STSnapToGridTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STSnapToGridTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STStartPointTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STStartPointTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STSummaryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/AST/Functions/PostgreSql/STSummaryTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/GeometryWalkerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/GeometryWalkerTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/ORM/Query/WrappingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/ORM/Query/WrappingTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/OrmMockTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/OrmMockTestCase.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/OrmTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/OrmTestCase.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/PHP/Types/Geography/PointTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/PHP/Types/Geography/PointTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/PHP/Types/Geometry/LineStringTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/PHP/Types/Geometry/LineStringTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/PHP/Types/Geometry/MultiLineStringTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/PHP/Types/Geometry/MultiLineStringTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/PHP/Types/Geometry/MultiPointTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/PHP/Types/Geometry/MultiPointTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/PHP/Types/Geometry/MultiPolygonTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/PHP/Types/Geometry/MultiPolygonTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/PHP/Types/Geometry/PointTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/PHP/Types/Geometry/PointTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/PHP/Types/Geometry/PolygonTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/PHP/Types/Geometry/PolygonTest.php -------------------------------------------------------------------------------- /tests/CrEOF/Spatial/Tests/TestInit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/CrEOF/Spatial/Tests/TestInit.php -------------------------------------------------------------------------------- /tests/travis/composer.orm2.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/travis/composer.orm2.3.json -------------------------------------------------------------------------------- /tests/travis/composer.orm2.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/travis/composer.orm2.4.json -------------------------------------------------------------------------------- /tests/travis/composer.orm2.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/travis/composer.orm2.5.json -------------------------------------------------------------------------------- /tests/travis/travis.mysql.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/travis/travis.mysql.xml -------------------------------------------------------------------------------- /tests/travis/travis.pgsql.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creof/doctrine2-spatial/HEAD/tests/travis/travis.pgsql.xml --------------------------------------------------------------------------------