Skip to content

Commit 7f33524

Browse files
change param type queryToSql helper function
1 parent 25e27b7 commit 7f33524

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/helpers.php

+2-4
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
use Illuminate\Container\Container;
44
use Illuminate\Contracts\Foundation\Application;
5-
use Illuminate\Database\Eloquent\Builder as EloquentBuilder;
6-
use Illuminate\Database\Query\Builder as QueryBuilder;
75
use Illuminate\Support\Facades\DB;
86

97
if (!function_exists('appNamespace')) {
@@ -40,11 +38,11 @@ function appFolderName(): string
4038
/**
4139
* get full sql query string in query builder
4240
*
43-
* @param EloquentBuilder|QueryBuilder $builder
41+
* @param object $builder
4442
*
4543
* @return string
4644
*/
47-
function queryToSql(EloquentBuilder|QueryBuilder $builder): string
45+
function queryToSql(object $builder): string
4846
{
4947
return vsprintf(str_replace('?', '%s', str_replace('?', "'?'", $builder->toSql())), $builder->getBindings());
5048
}

0 commit comments

Comments
 (0)