fix(Connection): add parameter to select() for Laravel 13 compatibility (#54)

This commit is contained in:
Oral ÜNAL
2026-03-24 14:27:47 +05:00
committed by GitHub
parent a6e0f56b2e
commit dab4243872
+1 -1
View File
@@ -66,7 +66,7 @@ class Connection extends BaseConnection
}
/** @inheritDoc */
public function select($query, $bindings = [], $useReadPdo = true): array
public function select($query, $bindings = [], $useReadPdo = true, array $fetchUsing = []): array
{
$query = QueryGrammar::prepareParameters($query);
return $this->run($query, $bindings, function ($query, $bindings) {