@@ -27,7 +27,7 @@ public function testGeometry()
27
27
$ expectedCol = new ColumnDefinition ([
28
28
'type ' => 'geometry ' ,
29
29
'name ' => 'col ' ,
30
- 'srid ' => null
30
+ 'srid ' => null ,
31
31
]);
32
32
33
33
$ this ->blueprint
@@ -46,7 +46,7 @@ public function testPoint()
46
46
$ expectedCol = new ColumnDefinition ([
47
47
'type ' => 'point ' ,
48
48
'name ' => 'col ' ,
49
- 'srid ' => null
49
+ 'srid ' => null ,
50
50
]);
51
51
52
52
$ this ->blueprint
@@ -65,7 +65,7 @@ public function testLinestring()
65
65
$ expectedCol = new ColumnDefinition ([
66
66
'type ' => 'linestring ' ,
67
67
'name ' => 'col ' ,
68
- 'srid ' => null
68
+ 'srid ' => null ,
69
69
]);
70
70
71
71
$ this ->blueprint
@@ -84,7 +84,7 @@ public function testPolygon()
84
84
$ expectedCol = new ColumnDefinition ([
85
85
'type ' => 'polygon ' ,
86
86
'name ' => 'col ' ,
87
- 'srid ' => null
87
+ 'srid ' => null ,
88
88
]);
89
89
90
90
$ this ->blueprint
@@ -103,7 +103,7 @@ public function testMultiPoint()
103
103
$ expectedCol = new ColumnDefinition ([
104
104
'type ' => 'multipoint ' ,
105
105
'name ' => 'col ' ,
106
- 'srid ' => null
106
+ 'srid ' => null ,
107
107
]);
108
108
109
109
$ this ->blueprint
@@ -122,7 +122,7 @@ public function testMultiLineString()
122
122
$ expectedCol = new ColumnDefinition ([
123
123
'type ' => 'multilinestring ' ,
124
124
'name ' => 'col ' ,
125
- 'srid ' => null
125
+ 'srid ' => null ,
126
126
]);
127
127
128
128
$ this ->blueprint
@@ -141,7 +141,7 @@ public function testMultiPolygon()
141
141
$ expectedCol = new ColumnDefinition ([
142
142
'type ' => 'multipolygon ' ,
143
143
'name ' => 'col ' ,
144
- 'srid ' => null
144
+ 'srid ' => null ,
145
145
]);
146
146
147
147
$ this ->blueprint
@@ -160,7 +160,7 @@ public function testGeometryCollection()
160
160
$ expectedCol = new ColumnDefinition ([
161
161
'type ' => 'geometrycollection ' ,
162
162
'name ' => 'col ' ,
163
- 'srid ' => null
163
+ 'srid ' => null ,
164
164
]);
165
165
166
166
$ this ->blueprint
@@ -179,7 +179,7 @@ public function testGeometryWithSrid()
179
179
$ expectedCol = new ColumnDefinition ([
180
180
'type ' => 'geometry ' ,
181
181
'name ' => 'col ' ,
182
- 'srid ' => 4326
182
+ 'srid ' => 4326 ,
183
183
]);
184
184
185
185
$ this ->blueprint
@@ -198,7 +198,7 @@ public function testPointWithSrid()
198
198
$ expectedCol = new ColumnDefinition ([
199
199
'type ' => 'point ' ,
200
200
'name ' => 'col ' ,
201
- 'srid ' => 4326
201
+ 'srid ' => 4326 ,
202
202
]);
203
203
204
204
$ this ->blueprint
@@ -217,7 +217,7 @@ public function testLinestringWithSrid()
217
217
$ expectedCol = new ColumnDefinition ([
218
218
'type ' => 'linestring ' ,
219
219
'name ' => 'col ' ,
220
- 'srid ' => 4326
220
+ 'srid ' => 4326 ,
221
221
]);
222
222
223
223
$ this ->blueprint
@@ -236,7 +236,7 @@ public function testPolygonWithSrid()
236
236
$ expectedCol = new ColumnDefinition ([
237
237
'type ' => 'polygon ' ,
238
238
'name ' => 'col ' ,
239
- 'srid ' => 4326
239
+ 'srid ' => 4326 ,
240
240
]);
241
241
242
242
$ this ->blueprint
@@ -255,7 +255,7 @@ public function testMultiPointWithSrid()
255
255
$ expectedCol = new ColumnDefinition ([
256
256
'type ' => 'multipoint ' ,
257
257
'name ' => 'col ' ,
258
- 'srid ' => 4326
258
+ 'srid ' => 4326 ,
259
259
]);
260
260
261
261
$ this ->blueprint
@@ -274,7 +274,7 @@ public function testMultiLineStringWithSrid()
274
274
$ expectedCol = new ColumnDefinition ([
275
275
'type ' => 'multilinestring ' ,
276
276
'name ' => 'col ' ,
277
- 'srid ' => 4326
277
+ 'srid ' => 4326 ,
278
278
]);
279
279
280
280
$ this ->blueprint
@@ -293,7 +293,7 @@ public function testMultiPolygonWithSrid()
293
293
$ expectedCol = new ColumnDefinition ([
294
294
'type ' => 'multipolygon ' ,
295
295
'name ' => 'col ' ,
296
- 'srid ' => 4326
296
+ 'srid ' => 4326 ,
297
297
]);
298
298
299
299
$ this ->blueprint
@@ -312,7 +312,7 @@ public function testGeometryCollectionWithSrid()
312
312
$ expectedCol = new ColumnDefinition ([
313
313
'type ' => 'geometrycollection ' ,
314
314
'name ' => 'col ' ,
315
- 'srid ' => 4326
315
+ 'srid ' => 4326 ,
316
316
]);
317
317
318
318
$ this ->blueprint
0 commit comments