Skip to content

Commit 3eadce2

Browse files
committed
TASK: Fix style ci error
1 parent f82ef40 commit 3eadce2

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

Classes/Driver/Version5/Query/FilteredQuery.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,9 @@ public function fulltext($searchWord)
3838
public function queryFilter($filterType, $filterOptions, $clauseType = 'must')
3939
{
4040
if (!in_array($clauseType, ['must', 'should', 'must_not'])) {
41-
throw new Exception\QueryBuildingException('The given clause type "' . $clauseType . '" is not supported. Must be one of "must", "should", "must_not".',
42-
1383716082);
41+
throw new Exception\QueryBuildingException('The given clause type "' . $clauseType . '" is not supported. Must be one of "must", "should", "must_not".', 1383716082);
4342
}
4443

4544
$this->appendAtPath('query.bool.filter.bool.' . $clauseType, [$filterType => $filterOptions]);
4645
}
47-
4846
}

0 commit comments

Comments
 (0)