Skip to content

Commit fe4f638

Browse files
authored
Merge pull request #9 from grimzy/spatial-analysis
Streamlined spatial analysis functions on master branch
2 parents 3aedd97 + 6ad1fc4 commit fe4f638

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+282
-273
lines changed

Dockerfile

Lines changed: 0 additions & 17 deletions
This file was deleted.

php.ini

Lines changed: 0 additions & 2 deletions
This file was deleted.

src/Connectors/ConnectionFactory.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
class ConnectionFactory extends \Illuminate\Database\Connectors\ConnectionFactory
99
{
1010
/**
11-
* @param string $driver
11+
* @param string $driver
1212
* @param \Closure|PDO $connection
13-
* @param string $database
14-
* @param string $prefix
15-
* @param array $config
13+
* @param string $database
14+
* @param string $prefix
15+
* @param array $config
1616
*
1717
* @return \Illuminate\Database\ConnectionInterface
1818
*/

src/Doctrine/Geometry.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ public function getName()
1818
{
1919
return self::GEOMETRY;
2020
}
21-
}
21+
}

src/Doctrine/GeometryCollection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ public function getName()
1818
{
1919
return self::GEOMETRYCOLLECTION;
2020
}
21-
}
21+
}

src/Doctrine/LineString.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ public function getName()
1818
{
1919
return self::LINESTRING;
2020
}
21-
}
21+
}

src/Doctrine/MultiLineString.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ public function getName()
1818
{
1919
return self::MULTILINESTRING;
2020
}
21-
}
21+
}

src/Doctrine/MultiPoint.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ public function getName()
1818
{
1919
return self::MULTIPOINT;
2020
}
21-
}
21+
}

src/Doctrine/MultiPolygon.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ public function getName()
1818
{
1919
return self::MULTIPOLYGON;
2020
}
21-
}
21+
}

src/Doctrine/Point.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ public function getName()
1818
{
1919
return self::POINT;
2020
}
21-
}
21+
}

0 commit comments

Comments
 (0)