Skip to content

Commit 81fbc6b

Browse files
authored
[Bug]: Classes with missing internal (#241)
* fix: add forgotten internal tags * Apply php-cs-fixer changes * fix: abstract adapters should not be internal --------- Co-authored-by: lukmzig <lukmzig@users.noreply.github.com>
1 parent e8129cc commit 81fbc6b

File tree

7 files changed

+18
-1
lines changed

7 files changed

+18
-1
lines changed

src/SearchIndexAdapter/OpenSearch/DataObject/IndexIconUpdateService.php

-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222

2323
/**
2424
* @internal
25-
2625
*/
2726
final readonly class IndexIconUpdateService implements IndexIconUpdateServiceInterface
2827
{

src/SearchIndexAdapter/OpenSearch/IndexMappingService.php

+3
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323
use Pimcore\Bundle\GenericDataIndexBundle\SearchIndexAdapter\Mapping;
2424
use Pimcore\Model\DataObject\ClassDefinition\Data;
2525

26+
/**
27+
* @internal
28+
*/
2629
readonly class IndexMappingService implements IndexMappingServiceInterface
2730
{
2831
public function __construct(

src/SearchIndexAdapter/OpenSearch/IndexStatsService.php

+3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626
use Pimcore\Bundle\GenericDataIndexBundle\Service\SearchIndex\SearchIndexConfigServiceInterface;
2727
use Pimcore\Bundle\GenericDataIndexBundle\Traits\LoggerAwareTrait;
2828

29+
/**
30+
* @internal
31+
*/
2932
final class IndexStatsService implements IndexStatsServiceInterface
3033
{
3134
use LoggerAwareTrait;

src/SearchIndexAdapter/OpenSearch/QueryLanguage/FieldNameValidator/FieldExistsValidator.php

+3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121
use Pimcore\Bundle\GenericDataIndexBundle\SearchIndexAdapter\OpenSearch\QueryLanguage\FieldNameValidatorInterface;
2222
use Symfony\Component\DependencyInjection\Attribute\AsTaggedItem;
2323

24+
/**
25+
* @internal
26+
*/
2427
#[AsTaggedItem(priority: 0)]
2528
final readonly class FieldExistsValidator implements FieldNameValidatorInterface
2629
{

src/SearchIndexAdapter/OpenSearch/QueryLanguage/FieldNameValidator/LocalizedFieldValidator.php

+3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@
2222
use Pimcore\Tool;
2323
use Symfony\Component\DependencyInjection\Attribute\AsTaggedItem;
2424

25+
/**
26+
* @internal
27+
*/
2528
#[AsTaggedItem(priority: 1)]
2629
final readonly class LocalizedFieldValidator implements FieldNameValidatorInterface
2730
{

src/SearchIndexAdapter/OpenSearch/QueryLanguage/FieldNameValidator/RelationValidator.php

+3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121
use Pimcore\Bundle\GenericDataIndexBundle\SearchIndexAdapter\OpenSearch\QueryLanguage\FieldNameValidatorInterface;
2222
use Symfony\Component\DependencyInjection\Attribute\AsTaggedItem;
2323

24+
/**
25+
* @internal
26+
*/
2427
#[AsTaggedItem(priority: 2)]
2528
final readonly class RelationValidator implements FieldNameValidatorInterface
2629
{

src/SearchIndexAdapter/OpenSearch/Search/FetchIdsBySearchService.php

+3
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@
2424
use Pimcore\Bundle\GenericDataIndexBundle\SearchIndexAdapter\SearchIndexServiceInterface;
2525
use Pimcore\Bundle\GenericDataIndexBundle\Service\SearchIndex\SearchIndexConfigServiceInterface;
2626

27+
/**
28+
* @internal
29+
*/
2730
final readonly class FetchIdsBySearchService implements FetchIdsBySearchServiceInterface
2831
{
2932
public function __construct(

0 commit comments

Comments
 (0)