Skip to content

Commit

Permalink
fix: add forgotten internal tags
Browse files Browse the repository at this point in the history
  • Loading branch information
lukmzig committed Nov 4, 2024
1 parent ad36906 commit e65c291
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@
use Pimcore\Bundle\GenericDataIndexBundle\Service\SearchIndex\SearchIndexConfigServiceInterface;
use Pimcore\ValueObject\Collection\ArrayOfStrings;
use ValueError;

/**
* @internal
*/
abstract class AbstractAdapter implements AdapterInterface
{
public function __construct(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
use Pimcore\Model\DataObject\ClassDefinition\Data;
use Pimcore\Normalizer\NormalizerInterface;

/**
* @internal
*/
abstract class AbstractAdapter implements AdapterInterface
{
private Data $fieldDefinition;
Expand Down
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 e65c291

Please sign in to comment.