From 5e916c389efa742f3d272f18b8b9ebd7b0663cfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Andr=C3=A9?= Date: Wed, 30 Jul 2025 00:58:20 +0200 Subject: [PATCH] [Autocomplete] Fix Fixtures\Form missing base namespace --- .../tests/Fixtures/Form/CategoryWithCallbackAsCustomValue.php | 2 +- .../Fixtures/Form/CategoryWithPropertyNameAsCustomValue.php | 2 +- src/Autocomplete/tests/Fixtures/Kernel.php | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Autocomplete/tests/Fixtures/Form/CategoryWithCallbackAsCustomValue.php b/src/Autocomplete/tests/Fixtures/Form/CategoryWithCallbackAsCustomValue.php index 60459ca516e..581161f8aec 100644 --- a/src/Autocomplete/tests/Fixtures/Form/CategoryWithCallbackAsCustomValue.php +++ b/src/Autocomplete/tests/Fixtures/Form/CategoryWithCallbackAsCustomValue.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Fixtures\Form; +namespace Symfony\UX\Autocomplete\Tests\Fixtures\Form; use Symfony\Component\Form\AbstractType; use Symfony\Component\OptionsResolver\OptionsResolver; diff --git a/src/Autocomplete/tests/Fixtures/Form/CategoryWithPropertyNameAsCustomValue.php b/src/Autocomplete/tests/Fixtures/Form/CategoryWithPropertyNameAsCustomValue.php index 45a6a9ba61a..5fffd0ad32a 100644 --- a/src/Autocomplete/tests/Fixtures/Form/CategoryWithPropertyNameAsCustomValue.php +++ b/src/Autocomplete/tests/Fixtures/Form/CategoryWithPropertyNameAsCustomValue.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Fixtures\Form; +namespace Symfony\UX\Autocomplete\Tests\Fixtures\Form; use Symfony\Component\Form\AbstractType; use Symfony\Component\OptionsResolver\OptionsResolver; diff --git a/src/Autocomplete/tests/Fixtures/Kernel.php b/src/Autocomplete/tests/Fixtures/Kernel.php index b8439ae40a4..62ca3f4ad94 100644 --- a/src/Autocomplete/tests/Fixtures/Kernel.php +++ b/src/Autocomplete/tests/Fixtures/Kernel.php @@ -14,8 +14,6 @@ use Composer\InstalledVersions; use Doctrine\Bundle\DoctrineBundle\DoctrineBundle; use Doctrine\ORM\Mapping\AssociationMapping; -use Fixtures\Form\CategoryWithCallbackAsCustomValue; -use Fixtures\Form\CategoryWithPropertyNameAsCustomValue; use Psr\Log\NullLogger; use Symfony\Bundle\FrameworkBundle\FrameworkBundle; use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait; @@ -38,6 +36,8 @@ use Symfony\UX\Autocomplete\Tests\Fixtures\Autocompleter\CustomAttributesProductAutocompleter; use Symfony\UX\Autocomplete\Tests\Fixtures\Autocompleter\CustomGroupByProductAutocompleter; use Symfony\UX\Autocomplete\Tests\Fixtures\Autocompleter\CustomProductAutocompleter; +use Symfony\UX\Autocomplete\Tests\Fixtures\Form\CategoryWithCallbackAsCustomValue; +use Symfony\UX\Autocomplete\Tests\Fixtures\Form\CategoryWithPropertyNameAsCustomValue; use Symfony\UX\Autocomplete\Tests\Fixtures\Form\ProductType; use Twig\Environment; use Zenstruck\Foundry\ZenstruckFoundryBundle;