Skip to content

Commit

Permalink
Merge branch '1.x' into 2.x
Browse files Browse the repository at this point in the history
  • Loading branch information
lukmzig committed Nov 15, 2024
2 parents 5c020fa + e95dc85 commit 975ba43
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@

/**
* @internal
*/
final readonly class IndexIconUpdateService implements IndexIconUpdateServiceInterface
{
Expand Down
3 changes: 3 additions & 0 deletions src/SearchIndexAdapter/OpenSearch/IndexMappingService.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
use Pimcore\Bundle\GenericDataIndexBundle\SearchIndexAdapter\Mapping;
use Pimcore\Model\DataObject\ClassDefinition\Data;

/**
* @internal
*/
readonly class IndexMappingService implements IndexMappingServiceInterface
{
public function __construct(
Expand Down
3 changes: 3 additions & 0 deletions src/SearchIndexAdapter/OpenSearch/IndexStatsService.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@
use Pimcore\Bundle\GenericDataIndexBundle\Service\SearchIndex\SearchIndexConfigServiceInterface;
use Pimcore\Bundle\GenericDataIndexBundle\Traits\LoggerAwareTrait;

/**
* @internal
*/
final class IndexStatsService implements IndexStatsServiceInterface
{
use LoggerAwareTrait;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@
use Pimcore\Bundle\GenericDataIndexBundle\SearchIndexAdapter\OpenSearch\QueryLanguage\FieldNameValidatorInterface;
use Symfony\Component\DependencyInjection\Attribute\AsTaggedItem;

/**
* @internal
*/
#[AsTaggedItem(priority: 0)]
final readonly class FieldExistsValidator implements FieldNameValidatorInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
use Pimcore\Tool;
use Symfony\Component\DependencyInjection\Attribute\AsTaggedItem;

/**
* @internal
*/
#[AsTaggedItem(priority: 1)]
final readonly class LocalizedFieldValidator implements FieldNameValidatorInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@
use Pimcore\Bundle\GenericDataIndexBundle\SearchIndexAdapter\OpenSearch\QueryLanguage\FieldNameValidatorInterface;
use Symfony\Component\DependencyInjection\Attribute\AsTaggedItem;

/**
* @internal
*/
#[AsTaggedItem(priority: 2)]
final readonly class RelationValidator implements FieldNameValidatorInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@
use Pimcore\Bundle\GenericDataIndexBundle\SearchIndexAdapter\SearchIndexServiceInterface;
use Pimcore\Bundle\GenericDataIndexBundle\Service\SearchIndex\SearchIndexConfigServiceInterface;

/**
* @internal
*/
final readonly class FetchIdsBySearchService implements FetchIdsBySearchServiceInterface
{
public function __construct(
Expand Down

0 comments on commit 975ba43

Please sign in to comment.