Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/4.6' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
mikadamczyk committed Oct 14, 2024
2 parents 1d91509 + af5f1f0 commit d0d195a
Show file tree
Hide file tree
Showing 8 changed files with 2 additions and 187 deletions.
21 changes: 0 additions & 21 deletions phpstan-baseline.neon

This file was deleted.

1 change: 0 additions & 1 deletion phpstan.neon
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
includes:
- vendor/phpstan/phpstan-phpunit/extension.neon
- vendor/phpstan/phpstan-symfony/extension.neon
- phpstan-baseline.neon

parameters:
level: 8
Expand Down

This file was deleted.

This file was deleted.

2 changes: 0 additions & 2 deletions src/contracts/Values/Query/Criterion/CriterionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,3 @@
interface CriterionInterface
{
}

class_alias(CriterionInterface::class, \Ibexa\Contracts\ProductCatalog\Values\Common\Query\Criterion\CriterionInterface::class);
2 changes: 0 additions & 2 deletions src/contracts/Values/Query/Criterion/FieldValueCriterion.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,5 +83,3 @@ public function getOperator(): string
return $this->operator;
}
}

class_alias(FieldValueCriterion::class, \Ibexa\Contracts\ProductCatalog\Values\Common\Query\Criterion\FieldValueCriterion::class);
4 changes: 1 addition & 3 deletions src/contracts/Values/Query/CriterionMapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,8 @@

/**
* Converts Criterion instances into objects that underlying Handler can understand.
*
* @final
*/
class CriterionMapper
final class CriterionMapper
{
/**
* @var iterable<\Ibexa\Contracts\CoreSearch\Values\Query\CriterionMapperInterface<
Expand Down
5 changes: 1 addition & 4 deletions src/contracts/Values/Query/SortDirection.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,7 @@

namespace Ibexa\Contracts\CoreSearch\Values\Query;

/**
* @final
*/
class SortDirection
final class SortDirection
{
public const ASC = 'ascending';
public const DESC = 'descending';
Expand Down

0 comments on commit d0d195a

Please sign in to comment.