Skip to content

Commit a6a238f

Browse files
authored
Merge pull request #145 from georgeboot/laravel-8
Support Laravel 8
2 parents 49b0daf + 1e47ab8 commit a6a238f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

composer.json

+2-2
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|^7.0",
21+
"illuminate/database": "^8.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|^7.0",
28+
"laravel/laravel": "^8.0",
2929
"doctrine/dbal": "^2.5",
3030
"laravel/browser-kit-testing": "^2.0",
3131
"php-coveralls/php-coveralls": "^2.0"

src/Eloquent/BaseBuilder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
class BaseBuilder extends QueryBuilder
88
{
9-
protected function cleanBindings(array $bindings)
9+
public function cleanBindings(array $bindings)
1010
{
1111
$spatialBindings = [];
1212
foreach ($bindings as &$binding) {

0 commit comments

Comments
 (0)