Skip to content

Commit

Permalink
Merge pull request laravel#26937 from JacobBennett/patch-1
Browse files Browse the repository at this point in the history
[5.4] Fix Query Builder breakage with PHP 7.3
  • Loading branch information
taylorotwell authored Dec 21, 2018
2 parents 8a74cf9 + 00f834f commit 5042846
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Database/Query/Builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -1226,7 +1226,7 @@ public function addWhereExistsQuery(self $query, $boolean = 'and', $not = false)
{
$type = $not ? 'NotExists' : 'Exists';

$this->wheres[] = compact('type', 'operator', 'query', 'boolean');
$this->wheres[] = compact('type', 'query', 'boolean');

$this->addBinding($query->getBindings(), 'where');

Expand Down

0 comments on commit 5042846

Please sign in to comment.