Skip to content

Commit 6cc2947

Browse files
grimzyStyleCIBot
authored andcommitted
Apply fixes from StyleCI
[ci skip] [skip ci]
1 parent 9989436 commit 6cc2947

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

tests/Unit/Eloquent/SpatialTraitTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
use Grimzy\LaravelMysqlSpatial\MysqlConnection;
55
use Grimzy\LaravelMysqlSpatial\Types\Point;
66
use Illuminate\Database\Eloquent\Model;
7-
use Mockery as m;
87
use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;
8+
use Mockery as m;
99

1010
class SpatialTraitTest extends BaseTestCase
1111
{

tests/Unit/Schema/BlueprintTest.php

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function testGeometry()
2727
$expectedCol = new ColumnDefinition([
2828
'type' => 'geometry',
2929
'name' => 'col',
30-
'srid' => null
30+
'srid' => null,
3131
]);
3232

3333
$this->blueprint
@@ -46,7 +46,7 @@ public function testPoint()
4646
$expectedCol = new ColumnDefinition([
4747
'type' => 'point',
4848
'name' => 'col',
49-
'srid' => null
49+
'srid' => null,
5050
]);
5151

5252
$this->blueprint
@@ -65,7 +65,7 @@ public function testLinestring()
6565
$expectedCol = new ColumnDefinition([
6666
'type' => 'linestring',
6767
'name' => 'col',
68-
'srid' => null
68+
'srid' => null,
6969
]);
7070

7171
$this->blueprint
@@ -84,7 +84,7 @@ public function testPolygon()
8484
$expectedCol = new ColumnDefinition([
8585
'type' => 'polygon',
8686
'name' => 'col',
87-
'srid' => null
87+
'srid' => null,
8888
]);
8989

9090
$this->blueprint
@@ -103,7 +103,7 @@ public function testMultiPoint()
103103
$expectedCol = new ColumnDefinition([
104104
'type' => 'multipoint',
105105
'name' => 'col',
106-
'srid' => null
106+
'srid' => null,
107107
]);
108108

109109
$this->blueprint
@@ -122,7 +122,7 @@ public function testMultiLineString()
122122
$expectedCol = new ColumnDefinition([
123123
'type' => 'multilinestring',
124124
'name' => 'col',
125-
'srid' => null
125+
'srid' => null,
126126
]);
127127

128128
$this->blueprint
@@ -141,7 +141,7 @@ public function testMultiPolygon()
141141
$expectedCol = new ColumnDefinition([
142142
'type' => 'multipolygon',
143143
'name' => 'col',
144-
'srid' => null
144+
'srid' => null,
145145
]);
146146

147147
$this->blueprint
@@ -160,7 +160,7 @@ public function testGeometryCollection()
160160
$expectedCol = new ColumnDefinition([
161161
'type' => 'geometrycollection',
162162
'name' => 'col',
163-
'srid' => null
163+
'srid' => null,
164164
]);
165165

166166
$this->blueprint
@@ -179,7 +179,7 @@ public function testGeometryWithSrid()
179179
$expectedCol = new ColumnDefinition([
180180
'type' => 'geometry',
181181
'name' => 'col',
182-
'srid' => 4326
182+
'srid' => 4326,
183183
]);
184184

185185
$this->blueprint
@@ -198,7 +198,7 @@ public function testPointWithSrid()
198198
$expectedCol = new ColumnDefinition([
199199
'type' => 'point',
200200
'name' => 'col',
201-
'srid' => 4326
201+
'srid' => 4326,
202202
]);
203203

204204
$this->blueprint
@@ -217,7 +217,7 @@ public function testLinestringWithSrid()
217217
$expectedCol = new ColumnDefinition([
218218
'type' => 'linestring',
219219
'name' => 'col',
220-
'srid' => 4326
220+
'srid' => 4326,
221221
]);
222222

223223
$this->blueprint
@@ -236,7 +236,7 @@ public function testPolygonWithSrid()
236236
$expectedCol = new ColumnDefinition([
237237
'type' => 'polygon',
238238
'name' => 'col',
239-
'srid' => 4326
239+
'srid' => 4326,
240240
]);
241241

242242
$this->blueprint
@@ -255,7 +255,7 @@ public function testMultiPointWithSrid()
255255
$expectedCol = new ColumnDefinition([
256256
'type' => 'multipoint',
257257
'name' => 'col',
258-
'srid' => 4326
258+
'srid' => 4326,
259259
]);
260260

261261
$this->blueprint
@@ -274,7 +274,7 @@ public function testMultiLineStringWithSrid()
274274
$expectedCol = new ColumnDefinition([
275275
'type' => 'multilinestring',
276276
'name' => 'col',
277-
'srid' => 4326
277+
'srid' => 4326,
278278
]);
279279

280280
$this->blueprint
@@ -293,7 +293,7 @@ public function testMultiPolygonWithSrid()
293293
$expectedCol = new ColumnDefinition([
294294
'type' => 'multipolygon',
295295
'name' => 'col',
296-
'srid' => 4326
296+
'srid' => 4326,
297297
]);
298298

299299
$this->blueprint
@@ -312,7 +312,7 @@ public function testGeometryCollectionWithSrid()
312312
$expectedCol = new ColumnDefinition([
313313
'type' => 'geometrycollection',
314314
'name' => 'col',
315-
'srid' => 4326
315+
'srid' => 4326,
316316
]);
317317

318318
$this->blueprint

0 commit comments

Comments
 (0)