Skip to content
This repository was archived by the owner on May 12, 2022. It is now read-only.

Commit f5ca14b

Browse files
author
Nik Barham
committed
Typo in new Group By functionality
1 parent c06eb3b commit f5ca14b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Automatorm/Database/QueryBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ public function resolveGroup()
511511
if (!count($this->groupBy)) return '';
512512

513513
$columns = array_map([$this, 'escapeColumn'], $this->groupBy);
514-
return ' GROUP BY ' . implode(', ' . $columns);
514+
return ' GROUP BY ' . implode(', ', $columns);
515515
}
516516

517517
public function resolveLimit()

0 commit comments

Comments
 (0)