Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 2d3139d

Browse files
committed
Merge remote-tracking branch 'origin/master' into issue-95-point-collection-min-items
# Conflicts: # composer.json
2 parents 35f8031 + 2960628 commit 2d3139d

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

‎README.md‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ class Place extends Model
140140
```php
141141
use Grimzy\LaravelMysqlSpatial\Types\Point;
142142
use Grimzy\LaravelMysqlSpatial\Types\Polygon;
143+
use Grimzy\LaravelMysqlSpatial\Types\LineString;
143144

144145
$place1 = new Place();
145146
$place1->name = 'Empire State Building';

‎composer.json‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@
1818
"php": ">=5.5.9",
1919
"ext-pdo": "*",
2020
"ext-json": "*",
21-
"illuminate/database": "^5.2||^6.0",
21+
"illuminate/database": "^5.2|^6.0|^7.0",
2222
"geo-io/wkb-parser": "^1.0",
2323
"jmikola/geojson": "^1.0"
2424
},
2525
"require-dev": {
2626
"phpunit/phpunit": "~4.8||~5.7",
2727
"mockery/mockery": "^0.9.9",
28-
"laravel/laravel": "^5.2||^6.0",
28+
"laravel/laravel": "^5.2|^6.0|^7.0",
2929
"doctrine/dbal": "^2.5",
3030
"laravel/browser-kit-testing": "^2.0",
3131
"php-coveralls/php-coveralls": "^2.0"

‎src/Eloquent/SpatialTrait.php‎

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,9 @@ protected function newBaseQueryBuilder()
7575
$connection = $this->getConnection();
7676

7777
return new BaseBuilder(
78-
$connection, $connection->getQueryGrammar(), $connection->getPostProcessor()
78+
$connection,
79+
$connection->getQueryGrammar(),
80+
$connection->getPostProcessor()
7981
);
8082
}
8183

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /