Skip to content

Commit 5e916c3

Browse files
smnandreKocal
authored andcommitted
[Autocomplete] Fix Fixtures\Form missing base namespace
1 parent 1d94ec6 commit 5e916c3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/Autocomplete/tests/Fixtures/Form/CategoryWithCallbackAsCustomValue.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Fixtures\Form;
12+
namespace Symfony\UX\Autocomplete\Tests\Fixtures\Form;
1313

1414
use Symfony\Component\Form\AbstractType;
1515
use Symfony\Component\OptionsResolver\OptionsResolver;

src/Autocomplete/tests/Fixtures/Form/CategoryWithPropertyNameAsCustomValue.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Fixtures\Form;
12+
namespace Symfony\UX\Autocomplete\Tests\Fixtures\Form;
1313

1414
use Symfony\Component\Form\AbstractType;
1515
use Symfony\Component\OptionsResolver\OptionsResolver;

src/Autocomplete/tests/Fixtures/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
use Composer\InstalledVersions;
1515
use Doctrine\Bundle\DoctrineBundle\DoctrineBundle;
1616
use Doctrine\ORM\Mapping\AssociationMapping;
17-
use Fixtures\Form\CategoryWithCallbackAsCustomValue;
18-
use Fixtures\Form\CategoryWithPropertyNameAsCustomValue;
1917
use Psr\Log\NullLogger;
2018
use Symfony\Bundle\FrameworkBundle\FrameworkBundle;
2119
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
@@ -38,6 +36,8 @@
3836
use Symfony\UX\Autocomplete\Tests\Fixtures\Autocompleter\CustomAttributesProductAutocompleter;
3937
use Symfony\UX\Autocomplete\Tests\Fixtures\Autocompleter\CustomGroupByProductAutocompleter;
4038
use Symfony\UX\Autocomplete\Tests\Fixtures\Autocompleter\CustomProductAutocompleter;
39+
use Symfony\UX\Autocomplete\Tests\Fixtures\Form\CategoryWithCallbackAsCustomValue;
40+
use Symfony\UX\Autocomplete\Tests\Fixtures\Form\CategoryWithPropertyNameAsCustomValue;
4141
use Symfony\UX\Autocomplete\Tests\Fixtures\Form\ProductType;
4242
use Twig\Environment;
4343
use Zenstruck\Foundry\ZenstruckFoundryBundle;

0 commit comments

Comments
 (0)