fix laravel 12 issue with getDefaultQueryGrammar (#36)

* fix laravel 12 issue with getDefaultQueryGrammar
This commit is contained in:
Michael Braunöder
2025-02-25 10:43:35 +05:00
committed by GitHub
parent 2762a79947
commit 67caa69f66
+1 -1
View File
@@ -46,7 +46,7 @@ class Connection extends BaseConnection
/** @inheritDoc */
protected function getDefaultQueryGrammar()
{
return new QueryGrammar();
return new QueryGrammar($this);
}
/** @inheritDoc */