Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(symfony): autoconfigure elasticsearch extension #5379

Merged
merged 1 commit into from
Jan 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion phpstan.neon.dist
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ parameters:
- src/Core/Bridge/Doctrine/Orm/Util/QueryNameGenerator.php
- src/Core/Bridge/Elasticsearch/DataProvider/Extension/AbstractFilterExtension.php
- src/Core/Bridge/Elasticsearch/DataProvider/Extension/ConstantScoreFilterExtension.php
- src/Core/Bridge/Elasticsearch/DataProvider/Extension/RequestBodySearchCollectionExtensionInterface.php
- src/Core/Bridge/Elasticsearch/DataProvider/Extension/SortExtension.php
- src/Core/Bridge/Elasticsearch/DataProvider/Extension/SortFilterExtension.php
- src/Core/Bridge/Elasticsearch/DataProvider/Paginator.php
- src/Core/Bridge/Elasticsearch/Exception/IndexNotFoundException.php
- src/Core/Bridge/Elasticsearch/Exception/NonUniqueIdentifierException.php
- src/Core/Bridge/Elasticsearch/Extension/RequestBodySearchCollectionExtensionInterface.php
- src/Core/Bridge/Elasticsearch/Metadata/Document/DocumentMetadata.php
- src/Core/Bridge/Elasticsearch/Metadata/Document/Factory/AttributeDocumentMetadataFactory.php
- src/Core/Bridge/Elasticsearch/Metadata/Document/Factory/CachedDocumentMetadataFactory.php
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
use ApiPlatform\Api\UrlGeneratorInterface;
use ApiPlatform\Core\Annotation\ApiResource as ApiResourceAnnotation;
use ApiPlatform\Core\Bridge\Doctrine\Orm\Filter\AbstractContextAwareFilter as DoctrineOrmAbstractContextAwareFilter;
use ApiPlatform\Core\Bridge\Elasticsearch\Extension\RequestBodySearchCollectionExtensionInterface as LegacyRequestBodySearchCollectionExtensionInterface;
use ApiPlatform\Core\Bridge\Elasticsearch\DataProvider\Extension\RequestBodySearchCollectionExtensionInterface as LegacyRequestBodySearchCollectionExtensionInterface;
use ApiPlatform\Core\DataPersister\DataPersisterInterface;
use ApiPlatform\Core\DataProvider\CollectionDataProviderInterface;
use ApiPlatform\Core\DataProvider\ItemDataProviderInterface;
Expand Down