@@ -37,7 +37,6 @@ |
||
37 | 37 | |
38 | 38 | /** |
39 | 39 | * Add a new Feature object to the FeatureCollection. |
40 | - * @param Feature $geometry |
|
41 | 40 | */ |
42 | 41 | public function addFeature(Feature $feature) |
43 | 42 | { |
@@ -25,7 +25,6 @@ |
||
25 | 25 | |
26 | 26 | /** |
27 | 27 | * Create a new instance of the MultiPointString GeoJSON schema |
28 | - * @param array $linestrings |
|
29 | 28 | */ |
30 | 29 | public function __construct($init) |
31 | 30 | { |
@@ -5,7 +5,6 @@ |
||
5 | 5 | use Ballen\Cartographer\Core\GeoJSON; |
6 | 6 | use Ballen\Cartographer\Core\GeoJSONTypeInterface; |
7 | 7 | use Ballen\Cartographer\LineString; |
8 | -use Ballen\Distical\Entities\LatLong; |
|
9 | 8 | use Ballen\Collection\Collection; |
10 | 9 | |
11 | 10 | class MultiLineString extends GeoJSON implements GeoJSONTypeInterface |
@@ -24,7 +24,6 @@ |
||
24 | 24 | |
25 | 25 | /** |
26 | 26 | * Create a new instance of the MultiPolygon GeoJSON schema |
27 | - * @param array $linestrings |
|
28 | 27 | */ |
29 | 28 | public function __construct($init = null) |
30 | 29 | { |
@@ -3,7 +3,6 @@ |
||
3 | 3 | namespace Ballen\Cartographer; |
4 | 4 | |
5 | 5 | use Ballen\Cartographer\Core\GeoJSON; |
6 | -use Ballen\Distical\Entities\LatLong; |
|
7 | 6 | use Ballen\Cartographer\Polygon; |
8 | 7 | use Ballen\Collection\Collection; |
9 | 8 |