Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5e65913

Browse files
committedOct 17, 2024··
Fix CS
1 parent 5453e62 commit 5e65913

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/Illuminate/Database/Query/Grammars/Grammar.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1139,7 +1139,7 @@ protected function wrapUnion($sql)
11391139
protected function compileUnionAggregate(Builder $query)
11401140
{
11411141
$sql = $this->compileAggregate($query, $query->aggregate);
1142-
$group = $query->groups ? ' ' . $this->compileGroups($query, $query->groups) : '';
1142+
$group = $query->groups ? ' '.$this->compileGroups($query, $query->groups) : '';
11431143

11441144
$query->aggregate = null;
11451145
$query->groups = null;

0 commit comments

Comments
 (0)
Please sign in to comment.