From 875a385c6139c65746bcf9a45a92c1aa597527b8 Mon Sep 17 00:00:00 2001 From: Brabli <67018167+Brabli@users.noreply.github.com> Date: Thu, 21 Jul 2022 15:44:41 +0100 Subject: [PATCH] Fix namespaces --- tests/Service/GeocodeTest.php | 4 ++-- tests/Trait/MappableTraitTest.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/Service/GeocodeTest.php b/tests/Service/GeocodeTest.php index c4b6931..6de1349 100644 --- a/tests/Service/GeocodeTest.php +++ b/tests/Service/GeocodeTest.php @@ -4,11 +4,11 @@ declare(strict_types=1); namespace Pcm\GeocodeBundle\Tests; -use Pcm\GeocodeBundle\Interface\MappableInterface; +use Pcm\GeocodeBundle\Entity\Interface\MappableInterface; +use Pcm\GeocodeBundle\Entity\Trait\MappableTrait; use Pcm\GeocodeBundle\Model\LatLonModel; use Pcm\GeocodeBundle\Service\Geocoder; use Pcm\GeocodeBundle\Tests\AppKernel; -use Pcm\GeocodeBundle\Trait\MappableTrait; use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase; class GeocodeTest extends KernelTestCase diff --git a/tests/Trait/MappableTraitTest.php b/tests/Trait/MappableTraitTest.php index 45ca60b..a10447b 100644 --- a/tests/Trait/MappableTraitTest.php +++ b/tests/Trait/MappableTraitTest.php @@ -4,8 +4,8 @@ declare(strict_types=1); namespace Pcm\GeocodeBundle\Tests; -use Pcm\GeocodeBundle\Interface\MappableInterface; -use Pcm\GeocodeBundle\Trait\MappableTrait; +use Pcm\GeocodeBundle\Entity\Interface\MappableInterface; +use Pcm\GeocodeBundle\Entity\Trait\MappableTrait; use PHPUnit\Framework\TestCase; class MappableTraitTest extends TestCase