Skip to content

Commit

Permalink
Merge pull request grimzy#145 from georgeboot/laravel-8
Browse files Browse the repository at this point in the history
Support Laravel 8
  • Loading branch information
grimzy authored Sep 21, 2020
2 parents 49b0daf + 1e47ab8 commit a6a238f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
"php": ">=5.5.9",
"ext-pdo": "*",
"ext-json": "*",
"illuminate/database": "^5.2|^6.0|^7.0",
"illuminate/database": "^8.0",
"geo-io/wkb-parser": "^1.0",
"jmikola/geojson": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.8|~5.7",
"mockery/mockery": "^0.9.9",
"laravel/laravel": "^5.2|^6.0|^7.0",
"laravel/laravel": "^8.0",
"doctrine/dbal": "^2.5",
"laravel/browser-kit-testing": "^2.0",
"php-coveralls/php-coveralls": "^2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/Eloquent/BaseBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class BaseBuilder extends QueryBuilder
{
protected function cleanBindings(array $bindings)
public function cleanBindings(array $bindings)
{
$spatialBindings = [];
foreach ($bindings as &$binding) {
Expand Down

0 comments on commit a6a238f

Please sign in to comment.