@@ -56,7 +56,7 @@ public function testExtractDimension(): void
56
56
$ object = new Point (
57
57
Dimension::DIMENSION_4D ,
58
58
1234 ,
59
- new Coordinates (1 , 2 , 3 , 4 )
59
+ new Coordinates (1 , 2 , 3 , 4 ),
60
60
);
61
61
62
62
$ extractor = new Extractor ();
@@ -76,7 +76,7 @@ public function testExtractSrid(): void
76
76
$ object = new Point (
77
77
Dimension::DIMENSION_4D ,
78
78
1234 ,
79
- new Coordinates (1 , 2 , 3 , 4 )
79
+ new Coordinates (1 , 2 , 3 , 4 ),
80
80
);
81
81
82
82
$ extractor = new Extractor ();
@@ -96,7 +96,7 @@ public function testExtractCoordinatesFromPoint(): void
96
96
$ object = new Point (
97
97
Dimension::DIMENSION_4D ,
98
98
1234 ,
99
- new Coordinates (1 , 2 , 3 , 4 )
99
+ new Coordinates (1 , 2 , 3 , 4 ),
100
100
);
101
101
102
102
$ extractor = new Extractor ();
@@ -112,7 +112,7 @@ public function testExtractCoordinatesFromPoint(): void
112
112
public function testExtractCoordinatesFromPointReturnsNullForEmptyPoint (): void
113
113
{
114
114
$ object = new Point (
115
- Dimension::DIMENSION_4D
115
+ Dimension::DIMENSION_4D ,
116
116
);
117
117
118
118
$ extractor = new Extractor ();
@@ -134,19 +134,19 @@ public function testExtractLineString(): void
134
134
new Point (
135
135
Dimension::DIMENSION_4D ,
136
136
1234 ,
137
- new Coordinates (1 , 2 , 3 , 4 )
137
+ new Coordinates (1 , 2 , 3 , 4 ),
138
138
),
139
139
new Point (
140
140
Dimension::DIMENSION_4D ,
141
141
1234 ,
142
- new Coordinates (1 , 2 , 3 , 4 )
142
+ new Coordinates (1 , 2 , 3 , 4 ),
143
143
),
144
144
];
145
145
146
146
$ object = new LineString (
147
147
Dimension::DIMENSION_4D ,
148
148
1234 ,
149
- ...$ points
149
+ ...$ points,
150
150
);
151
151
152
152
$ extractor = new Extractor ();
@@ -173,30 +173,30 @@ public function testExtractPolygon(): void
173
173
new Point (
174
174
Dimension::DIMENSION_4D ,
175
175
1234 ,
176
- new Coordinates (1 , 2 , 3 , 4 )
176
+ new Coordinates (1 , 2 , 3 , 4 ),
177
177
),
178
178
new Point (
179
179
Dimension::DIMENSION_4D ,
180
180
1234 ,
181
- new Coordinates (1 , 2 , 3 , 4 )
181
+ new Coordinates (1 , 2 , 3 , 4 ),
182
182
),
183
183
new Point (
184
184
Dimension::DIMENSION_4D ,
185
185
1234 ,
186
- new Coordinates (1 , 2 , 3 , 4 )
186
+ new Coordinates (1 , 2 , 3 , 4 ),
187
187
),
188
188
new Point (
189
189
Dimension::DIMENSION_4D ,
190
190
1234 ,
191
- new Coordinates (1 , 2 , 3 , 4 )
192
- )
191
+ new Coordinates (1 , 2 , 3 , 4 ),
192
+ ),
193
193
),
194
194
];
195
195
196
196
$ object = new Polygon (
197
197
Dimension::DIMENSION_4D ,
198
198
1234 ,
199
- ...$ lineStrings
199
+ ...$ lineStrings,
200
200
);
201
201
202
202
$ extractor = new Extractor ();
@@ -220,19 +220,19 @@ public function testExtractMultiPoint(): void
220
220
new Point (
221
221
Dimension::DIMENSION_4D ,
222
222
1234 ,
223
- new Coordinates (1 , 2 , 3 , 4 )
223
+ new Coordinates (1 , 2 , 3 , 4 ),
224
224
),
225
225
new Point (
226
226
Dimension::DIMENSION_4D ,
227
227
1234 ,
228
- new Coordinates (1 , 2 , 3 , 4 )
228
+ new Coordinates (1 , 2 , 3 , 4 ),
229
229
),
230
230
];
231
231
232
232
$ object = new MultiPoint (
233
233
Dimension::DIMENSION_4D ,
234
234
1234 ,
235
- ...$ points
235
+ ...$ points,
236
236
);
237
237
238
238
$ extractor = new Extractor ();
@@ -259,30 +259,30 @@ public function testExtractMultiLineString(): void
259
259
new Point (
260
260
Dimension::DIMENSION_4D ,
261
261
1234 ,
262
- new Coordinates (1 , 2 , 3 , 4 )
262
+ new Coordinates (1 , 2 , 3 , 4 ),
263
263
),
264
264
new Point (
265
265
Dimension::DIMENSION_4D ,
266
266
1234 ,
267
- new Coordinates (1 , 2 , 3 , 4 )
267
+ new Coordinates (1 , 2 , 3 , 4 ),
268
268
),
269
269
new Point (
270
270
Dimension::DIMENSION_4D ,
271
271
1234 ,
272
- new Coordinates (1 , 2 , 3 , 4 )
272
+ new Coordinates (1 , 2 , 3 , 4 ),
273
273
),
274
274
new Point (
275
275
Dimension::DIMENSION_4D ,
276
276
1234 ,
277
- new Coordinates (1 , 2 , 3 , 4 )
278
- )
277
+ new Coordinates (1 , 2 , 3 , 4 ),
278
+ ),
279
279
),
280
280
];
281
281
282
282
$ object = new MultiLineString (
283
283
Dimension::DIMENSION_4D ,
284
284
1234 ,
285
- ...$ lineStrings
285
+ ...$ lineStrings,
286
286
);
287
287
288
288
$ extractor = new Extractor ();
@@ -312,31 +312,31 @@ public function testExtractMultiPolygon(): void
312
312
new Point (
313
313
Dimension::DIMENSION_4D ,
314
314
1234 ,
315
- new Coordinates (1 , 2 , 3 , 4 )
315
+ new Coordinates (1 , 2 , 3 , 4 ),
316
316
),
317
317
new Point (
318
318
Dimension::DIMENSION_4D ,
319
319
1234 ,
320
- new Coordinates (1 , 2 , 3 , 4 )
320
+ new Coordinates (1 , 2 , 3 , 4 ),
321
321
),
322
322
new Point (
323
323
Dimension::DIMENSION_4D ,
324
324
1234 ,
325
- new Coordinates (1 , 2 , 3 , 4 )
325
+ new Coordinates (1 , 2 , 3 , 4 ),
326
326
),
327
327
new Point (
328
328
Dimension::DIMENSION_4D ,
329
329
1234 ,
330
- new Coordinates (1 , 2 , 3 , 4 )
331
- )
330
+ new Coordinates (1 , 2 , 3 , 4 ),
331
+ ),
332
332
),
333
333
),
334
334
];
335
335
336
336
$ object = new MultiPolygon (
337
337
Dimension::DIMENSION_4D ,
338
338
1234 ,
339
- ...$ polygons
339
+ ...$ polygons,
340
340
);
341
341
342
342
$ extractor = new Extractor ();
@@ -360,38 +360,38 @@ public function testExtractGeometryCollection(): void
360
360
new Point (
361
361
Dimension::DIMENSION_4D ,
362
362
1234 ,
363
- new Coordinates (1 , 2 , 3 , 4 )
363
+ new Coordinates (1 , 2 , 3 , 4 ),
364
364
),
365
365
new LinearRing (
366
366
Dimension::DIMENSION_4D ,
367
367
1234 ,
368
368
new Point (
369
369
Dimension::DIMENSION_4D ,
370
370
1234 ,
371
- new Coordinates (1 , 2 , 3 , 4 )
371
+ new Coordinates (1 , 2 , 3 , 4 ),
372
372
),
373
373
new Point (
374
374
Dimension::DIMENSION_4D ,
375
375
1234 ,
376
- new Coordinates (1 , 2 , 3 , 4 )
376
+ new Coordinates (1 , 2 , 3 , 4 ),
377
377
),
378
378
new Point (
379
379
Dimension::DIMENSION_4D ,
380
380
1234 ,
381
- new Coordinates (1 , 2 , 3 , 4 )
381
+ new Coordinates (1 , 2 , 3 , 4 ),
382
382
),
383
383
new Point (
384
384
Dimension::DIMENSION_4D ,
385
385
1234 ,
386
- new Coordinates (1 , 2 , 3 , 4 )
387
- )
386
+ new Coordinates (1 , 2 , 3 , 4 ),
387
+ ),
388
388
),
389
389
];
390
390
391
391
$ object = new GeometryCollection (
392
392
Dimension::DIMENSION_4D ,
393
393
1234 ,
394
- ...$ geometries
394
+ ...$ geometries,
395
395
);
396
396
397
397
$ extractor = new Extractor ();
0 commit comments