Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
[ci skip] [skip ci]
  • Loading branch information
grimzy authored and StyleCIBot committed Sep 21, 2020
1 parent 9989436 commit 6cc2947
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion tests/Unit/Eloquent/SpatialTraitTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
use Grimzy\LaravelMysqlSpatial\MysqlConnection;
use Grimzy\LaravelMysqlSpatial\Types\Point;
use Illuminate\Database\Eloquent\Model;
use Mockery as m;
use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;
use Mockery as m;

class SpatialTraitTest extends BaseTestCase
{
Expand Down
32 changes: 16 additions & 16 deletions tests/Unit/Schema/BlueprintTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function testGeometry()
$expectedCol = new ColumnDefinition([
'type' => 'geometry',
'name' => 'col',
'srid' => null
'srid' => null,
]);

$this->blueprint
Expand All @@ -46,7 +46,7 @@ public function testPoint()
$expectedCol = new ColumnDefinition([
'type' => 'point',
'name' => 'col',
'srid' => null
'srid' => null,
]);

$this->blueprint
Expand All @@ -65,7 +65,7 @@ public function testLinestring()
$expectedCol = new ColumnDefinition([
'type' => 'linestring',
'name' => 'col',
'srid' => null
'srid' => null,
]);

$this->blueprint
Expand All @@ -84,7 +84,7 @@ public function testPolygon()
$expectedCol = new ColumnDefinition([
'type' => 'polygon',
'name' => 'col',
'srid' => null
'srid' => null,
]);

$this->blueprint
Expand All @@ -103,7 +103,7 @@ public function testMultiPoint()
$expectedCol = new ColumnDefinition([
'type' => 'multipoint',
'name' => 'col',
'srid' => null
'srid' => null,
]);

$this->blueprint
Expand All @@ -122,7 +122,7 @@ public function testMultiLineString()
$expectedCol = new ColumnDefinition([
'type' => 'multilinestring',
'name' => 'col',
'srid' => null
'srid' => null,
]);

$this->blueprint
Expand All @@ -141,7 +141,7 @@ public function testMultiPolygon()
$expectedCol = new ColumnDefinition([
'type' => 'multipolygon',
'name' => 'col',
'srid' => null
'srid' => null,
]);

$this->blueprint
Expand All @@ -160,7 +160,7 @@ public function testGeometryCollection()
$expectedCol = new ColumnDefinition([
'type' => 'geometrycollection',
'name' => 'col',
'srid' => null
'srid' => null,
]);

$this->blueprint
Expand All @@ -179,7 +179,7 @@ public function testGeometryWithSrid()
$expectedCol = new ColumnDefinition([
'type' => 'geometry',
'name' => 'col',
'srid' => 4326
'srid' => 4326,
]);

$this->blueprint
Expand All @@ -198,7 +198,7 @@ public function testPointWithSrid()
$expectedCol = new ColumnDefinition([
'type' => 'point',
'name' => 'col',
'srid' => 4326
'srid' => 4326,
]);

$this->blueprint
Expand All @@ -217,7 +217,7 @@ public function testLinestringWithSrid()
$expectedCol = new ColumnDefinition([
'type' => 'linestring',
'name' => 'col',
'srid' => 4326
'srid' => 4326,
]);

$this->blueprint
Expand All @@ -236,7 +236,7 @@ public function testPolygonWithSrid()
$expectedCol = new ColumnDefinition([
'type' => 'polygon',
'name' => 'col',
'srid' => 4326
'srid' => 4326,
]);

$this->blueprint
Expand All @@ -255,7 +255,7 @@ public function testMultiPointWithSrid()
$expectedCol = new ColumnDefinition([
'type' => 'multipoint',
'name' => 'col',
'srid' => 4326
'srid' => 4326,
]);

$this->blueprint
Expand All @@ -274,7 +274,7 @@ public function testMultiLineStringWithSrid()
$expectedCol = new ColumnDefinition([
'type' => 'multilinestring',
'name' => 'col',
'srid' => 4326
'srid' => 4326,
]);

$this->blueprint
Expand All @@ -293,7 +293,7 @@ public function testMultiPolygonWithSrid()
$expectedCol = new ColumnDefinition([
'type' => 'multipolygon',
'name' => 'col',
'srid' => 4326
'srid' => 4326,
]);

$this->blueprint
Expand All @@ -312,7 +312,7 @@ public function testGeometryCollectionWithSrid()
$expectedCol = new ColumnDefinition([
'type' => 'geometrycollection',
'name' => 'col',
'srid' => 4326
'srid' => 4326,
]);

$this->blueprint
Expand Down

0 comments on commit 6cc2947

Please sign in to comment.