From d6bf1cd451be99703fe428fb90747ef71b625a3e Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sat, 13 Aug 2011 10:02:39 +0530 Subject: [PATCH] Adhere to coding style --- libraries/gis/pma_gis_geometry.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/libraries/gis/pma_gis_geometry.php b/libraries/gis/pma_gis_geometry.php index c959c081a5..c49c1a1eb8 100644 --- a/libraries/gis/pma_gis_geometry.php +++ b/libraries/gis/pma_gis_geometry.php @@ -134,13 +134,15 @@ abstract class PMA_GIS_Geometry /** * Generate parameters for the GIS data editor from the value of the GIS column. - * This method performs common work. More specific work is performed by each of the geom classes. + * This method performs common work. + * More specific work is performed by each of the geom classes. * * @param $gis_string $value of the GIS column * - * @return array parameters for the GIS data editor from the value of the GIS column + * @return array parameters for the GIS editor from the value of the GIS column */ - protected function generateParams($value) { + protected function generateParams($value) + { $geom_types = '(POINT|MULTIPOINT|LINESTRING|MULTILINESTRING|POLYGON|MULTIPOLYGON|GEOMETRYCOLLECTION)'; $srid = 0; $wkt = '';