Skip to content

Commit ad812c6

Browse files
committed
Merge remote-tracking branch 'origin/mysql-5.6' into issue-95-point-collection-min-items-mysql-5.6
# Conflicts: # composer.json
2 parents ce1d086 + eeaa4af commit ad812c6

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
"php": ">=5.5.9",
1414
"ext-pdo": "*",
1515
"ext-json": "*",
16-
"illuminate/database": "^5.2||^6.0",
16+
"illuminate/database": "^5.2|^6.0|^7.0",
1717
"geo-io/wkb-parser": "^1.0",
1818
"jmikola/geojson": "^1.0"
1919
},
2020
"require-dev": {
21-
"phpunit/phpunit": "~4.8||~5.7",
21+
"phpunit/phpunit": "~4.8|~5.7",
2222
"mockery/mockery": "^0.9.9",
23-
"laravel/laravel": "^5.2||^6.0",
23+
"laravel/laravel": "^5.2|^6.0|^7.0",
2424
"codeclimate/php-test-reporter": "dev-master",
2525
"doctrine/dbal": "^2.5",
2626
"laravel/browser-kit-testing": "^2.0"

src/Eloquent/SpatialTrait.php

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

6868
return new BaseBuilder(
69-
$connection, $connection->getQueryGrammar(), $connection->getPostProcessor()
69+
$connection,
70+
$connection->getQueryGrammar(),
71+
$connection->getPostProcessor()
7072
);
7173
}
7274

0 commit comments

Comments
 (0)