We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86b7c61 commit aa51d3dCopy full SHA for aa51d3d
src/RequestParameters/CountParameter.php
@@ -27,6 +27,6 @@ protected function areArgumentsValid(): void
27
28
protected function appendQuery(): void
29
{
30
- $this->builder->select(DB::raw('count(*) as count'));
+ $this->builder->addSelect(DB::raw('count(*) as count'));
31
}
32
src/RequestParameters/ReturnsParameter.php
@@ -13,6 +13,6 @@ public static function getParameterName(): string
13
14
15
16
- $this->builder->select($this->arguments);
+ $this->builder->addSelect($this->arguments);
17
18
0 commit comments