8000 removed unused use statements · symfony/symfony@8550f37 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8550f37

Browse files
committed
removed unused use statements
1 parent dec43f5 commit 8550f37

File tree

15 files changed

+0
-18
lines changed

15 files changed

+0
-18
lines changed

src/Symfony/Bridge/Doctrine/Form/Type/EntityType.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
use Doctrine\Common\Persistence\ManagerRegistry;
1515
use Symfony\Component\Form\FormBuilder;
16-
use Symfony\Component\Form\FormFactoryInterface;
17-
use Symfony\Bridge\Doctrine\RegistryInterface;
1816
use Symfony\Bridge\Doctrine\Form\ChoiceList\EntityChoiceList;
1917
use Symfony\Bridge\Doctrine\Form\EventListener\MergeCollectionListener;
2018
use Symfony\Bridge\Doctrine\Form\DataTransformer\EntitiesToArrayTransformer;

src/Symfony/Bridge/Doctrine/RegistryInterface.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
namespace Symfony\Bridge\Doctrine;
1313

1414
use Doctrine\Common\Persistence\ManagerRegistry as ManagerRegistryInterface;
15-
use Doctrine\DBAL\Connection;
1615
use Doctrine\ORM\Configuration;
1716

1817
/**

src/Symfony/Component/HttpKernel/EventListener/RouterListener.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
use Symfony\Component\Routing\Exception\ResourceNotFoundException;
2222
use Symfony\Component\Routing\Matcher\UrlMatcherInterface;
2323
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
24-
use Symfony\Component\Routing\RouterInterface;
2524

2625
/**
2726
* Initializes request attributes based on a matching route.

src/Symfony/Component/Routing/Matcher/ApacheUrlMatcher.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
namespace Symfony\Component\Routing\Matcher;
1313

1414
use Symfony\Component\Routing\Exception\MethodNotAllowedException;
15-
use Symfony\Component\Routing\Route;
1615

1716
/**
1817
* ApacheUrlMatcher matches URL based on Apache mod_rewrite matching (see ApacheMatcherDumper).

src/Symfony/Component/Routing/Matcher/TraceableUrlMatcher.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
use Symfony\Component\Routing\Exception\ExceptionInterface;
1515
use Symfony\Component\Routing\Route;
1616
use Symfony\Component\Routing\RouteCollection;
17-
use Symfony\Component\Routing\RequestContext;
1817
use Symfony\Component\Routing\Matcher\UrlMatcher;
1918

2019
/**

src/Symfony/Component/Translation/Loader/IniFileLoader.php

Lines changed: 0 additions & 1 deletion
< 6DB6 /div>
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212
namespace Symfony\Component\Translation\Loader;
1313

14-
use Symfony\Component\Translation\MessageCatalogue;
1514
use Symfony\Component\Config\Resource\FileResource;
1615

1716
/**

tests/Symfony/Tests/Component/Config/Loader/DelegatingLoaderTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
use Symfony\Component\Config\Loader\LoaderResolver;
1515
use Symfony\Component\Config\Loader\DelegatingLoader;
16-
use Symfony\Component\Routing\Route;
1716

1817
class DelegatingLoaderTest extends \PHPUnit_Framework_TestCase
1918
{

tests/Symfony/Tests/Component/Form/Extension/Core/Type/DateTimeTypeTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
require_once __DIR__ . '/LocalizedTestCase.php';
1515

16-
use Symfony\Component\Form\TimeField;
1716
use Symfony\Component\Form\FormError;
1817

1918
class DateTimeTypeTest extends LocalizedTestCase

tests/Symfony/Tests/Component/Form/Extension/Core/Type/FormTypeTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@
1515
require_once __DIR__ . '/../../../Fixtures/Author.php';
1616

1717
use Symfony\Component\Form\Form;
18-
use Symfony\Component\Form\Field;
1918
use Symfony\Component\Form\CallbackTransformer;
20-
use Symfony\Component\Validator\ConstraintViolation;
2119
use Symfony\Tests\Component\Form\Fixtures\Author;
2220

2321
class FormTest_AuthorWithoutRefSetter

tests/Symfony/Tests/Component/HttpFoundation/File/MimeType/MimeTypeTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
use Symfony\Component\HttpFoundation\File\File;
1515
use Symfony\Component\HttpFoundation\File\MimeType\MimeTypeGuesser;
16-
use Symfony\Component\HttpFoundation\File\MimeType\ContentTypeMimeTypeGuesser;
1716
use Symfony\Component\HttpFoundation\File\MimeType\FileBinaryMimeTypeGuesser;
1817
use Symfony\Component\HttpFoundation\File\Exception\FileNotFoundException;
1918
use Symfony\Component\HttpFoundation\File\Exception\AccessDeniedException;

tests/Symfony/Tests/Component/HttpFoundation/RequestMatcherTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@
1111

1212
namespace Symfony\Tests\Component\HttpFoundation;
1313

14-
use Symfony\Component\HttpFoundation\SessionStorage\ArraySessionStorage;
1514

16-
use Symfony\Component\HttpFoundation\Session;
1715

1816
use Symfony\Component\HttpFoundation\RequestMatcher;
1917
use Symfony\Component\HttpFoundation\Request;

tests/Symfony/Tests/Component/Routing/Loader/AbstractAnnotationLoaderTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212
namespace Symfony\Tests\Component\Routing\Loader;
1313

14-
use Symfony\Component\Routing\Route;
1514

1615
abstract class AbstractAnnotationLoaderTest extends \PHPUnit_Framework_TestCase
1716
{

tests/Symfony/Tests/Component/Routing/Loader/AnnotationClassLoaderTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
namespace Symfony\Tests\Component\Routing\Loader;
1313

1414
use Symfony\Component\Routing\Loader\AnnotationClassLoader;
15-
use Symfony\Component\Routing\Route;
1615

1716
require_once __DIR__.'/../Fixtures/AnnotatedClasses/AbstractClass.php';
1817
require_once __DIR__.'/AbstractAnnotationLoaderTest.php';

tests/Symfony/Tests/Component/Routing/Loader/AnnotationDirectoryLoaderTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
namespace Symfony\Tests\Component\Routing\Loader;
1313

1414
use Symfony\Component\Routing\Loader\AnnotationDirectoryLoader;
15-
use Symfony\Component\Routing\Route;
1615
use Symfony\Component\Config\FileLocator;
1716

1817
require_once __DIR__.'/AbstractAnnotationLoaderTest.php';

tests/Symfony/Tests/Component/Routing/Loader/AnnotationFileLoaderTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
namespace Symfony\Tests\Component\Routing\Loader;
1313

1414
use Symfony\Component\Routing\Loader\AnnotationFileLoader;
15-
use Symfony\Component\Routing\Route;
1615
use Symfony\Component\Config\FileLocator;
1716

1817
require_once __DIR__.'/AbstractAnnotationLoaderTest.php';

0 commit comments

Comments
 (0)
0