Skip to content

Commit

Permalink
CR
Browse files Browse the repository at this point in the history
  • Loading branch information
mikadamczyk committed Sep 26, 2024
1 parent db8e103 commit 53d77ff
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

namespace Ibexa\Contracts\CoreSearch\Values\Query\Criterion;

class FieldValueCriterion implements CriterionInterface
final class FieldValueCriterion implements CriterionInterface
{
/** @final */
public const COMPARISON_EQ = '=';
Expand Down
2 changes: 1 addition & 1 deletion src/contracts/Values/Query/Criterion/LogicalAnd.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@

namespace Ibexa\Contracts\CoreSearch\Values\Query\Criterion;

class LogicalAnd extends AbstractCompositeCriterion
final class LogicalAnd extends AbstractCompositeCriterion
{
}
2 changes: 1 addition & 1 deletion src/contracts/Values/Query/Criterion/LogicalOr.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@

namespace Ibexa\Contracts\CoreSearch\Values\Query\Criterion;

class LogicalOr extends AbstractCompositeCriterion
final class LogicalOr extends AbstractCompositeCriterion
{
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

use Ibexa\Contracts\CoreSearch\Values\Query\AbstractSortClause;

class FieldValueSortClause extends AbstractSortClause
final class FieldValueSortClause extends AbstractSortClause
{
private string $field;

Expand Down

0 comments on commit 53d77ff

Please sign in to comment.