From 7dfca09ff6c292622f85a4dfde708c360c5addfc Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Thu, 19 Jun 2014 15:53:11 +0200 Subject: [PATCH] Minor CS fixes (`use` statements compliant with PSR-2) --- tests/Doctrine/Tests/ORM/Mapping/XmlMappingDriverTest.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tests/Doctrine/Tests/ORM/Mapping/XmlMappingDriverTest.php b/tests/Doctrine/Tests/ORM/Mapping/XmlMappingDriverTest.php index 09adb0617..c4c1f14a3 100644 --- a/tests/Doctrine/Tests/ORM/Mapping/XmlMappingDriverTest.php +++ b/tests/Doctrine/Tests/ORM/Mapping/XmlMappingDriverTest.php @@ -2,10 +2,9 @@ namespace Doctrine\Tests\ORM\Mapping; -use Doctrine\ORM\Mapping\ClassMetadata, - Doctrine\ORM\Mapping\ClassMetadataFactory, - Doctrine\ORM\Mapping\Driver\XmlDriver, - Doctrine\ORM\Mapping\Driver\YamlDriver; +use Doctrine\ORM\Mapping\ClassMetadata; +use Doctrine\ORM\Mapping\ClassMetadataFactory; +use Doctrine\ORM\Mapping\Driver\XmlDriver; class XmlMappingDriverTest extends AbstractMappingDriverTest {