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 70b2ac3 commit 8bb8bb7Copy full SHA for 8bb8bb7
src/QueryDataTable.php
@@ -809,10 +809,15 @@ public function getFilteredQuery(): QueryBuilder
809
return $this->getQuery();
810
}
811
812
- public function ignoreSelectsInCountQuery()
813
- {
814
- $this->ignoreSelectInCountQuery = true;
+ /**
+ * Ignore the selects in count query.
+ *
815
+ * @return $this
816
+ */
817
+ public function ignoreSelectsInCountQuery()
818
+ {
819
+ $this->ignoreSelectInCountQuery = true;
820
- return $this;
- }
821
+ return $this;
822
+ }
823
0 commit comments