chore: fix lint error

This commit is contained in:
Steven Nguyen 2025-08-26 15:11:27 -07:00
parent 737e2f8624
commit b57bef2d0c
No known key found for this signature in database

View file

@ -52,7 +52,7 @@ class V20 extends Filter
if (empty($selections)) {
$hasWildcard = true;
$parsed[] = Query::select(['*']);
} else if (!$hasWildcard) {
} elseif (!$hasWildcard) {
// check if any select includes a wildcard as we added one above
foreach ($selections as $select) {
if (\in_array('*', $select->getValues(), true)) {