Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <crynobone@gmail.com>
  • Loading branch information
crynobone committed Nov 15, 2024
1 parent 98cc21a commit 9df2b87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/analyse.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ jobs:
run: vendor/bin/pint --test

- name: Execute Static Code Analysis
run: vendor/bin/phpstan analyse
run: vendor/bin/phpstan analyse --verbose
2 changes: 1 addition & 1 deletion src/Query.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public static function serialize(FluentQueryBuilder $builder): array
$connection = $builder->getConnection();

return array_filter([
'connection' => \is_string($connection) ? $connection : $connection->getName(),
'connection' => \is_string($connection) ? $connection : $connection->getName(), // @phpstan-ignore method.notFound
'columns' => $builder->columns,
'bindings' => $builder->bindings,
'distinct' => $builder->distinct,
Expand Down

0 comments on commit 9df2b87

Please sign in to comment.