Skip to content

Commit d139e0c

Browse files
committed
Fix phpdoc and coding standards
This removes the unused use statements which were not catched by PHP-CS-Fixer because of string occurences. It also fixes some invalid phpdoc (scalar is not recognized as a valid type for instance).
1 parent fa872c8 commit d139e0c

File tree

7 files changed

+0
-9
lines changed

7 files changed

+0
-9
lines changed

Tests/Bundle/BundleTest.php

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

1212
namespace Symfony\Component\HttpKernel\Tests\Bundle;
1313

14-
use Symfony\Component\HttpKernel\Bundle\Bundle;
1514
use Symfony\Component\HttpKernel\Tests\Fixtures\ExtensionPresentBundle\ExtensionPresentBundle;
1615
use Symfony\Component\HttpKernel\Tests\Fixtures\ExtensionAbsentBundle\ExtensionAbsentBundle;
1716
use Symfony\Component\HttpKernel\Tests\Fixtures\ExtensionPresentBundle\Command\FooCommand;

Tests/CacheClearer/ChainCacheClearerTest.php

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

1212
namespace Symfony\Component\HttpKernel\Tests\CacheClearer;
1313

14-
use Symfony\Component\HttpKernel\CacheClearer\CacheClearerInterface;
1514
use Symfony\Component\HttpKernel\CacheClearer\ChainCacheClearer;
1615

1716
class ChainCacheClearerTest extends \PHPUnit_Framework_TestCase

Tests/CacheWarmer/CacheWarmerAggregateTest.php

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

1212
namespace Symfony\Component\HttpKernel\Tests\CacheWarmer;
1313

14-
use Symfony\Component\HttpKernel\CacheWarmer\CacheWarmerInterface;
1514
use Symfony\Component\HttpKernel\CacheWarmer\CacheWarmerAggregate;
16-
use Symfony\Component\HttpKernel\CacheWarmer\CacheWarmer;
1715

1816
class CacheWarmerAggregateTest extends \PHPUnit_Framework_TestCase
1917
{

Tests/ClientTest.php

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

1414
use Symfony\Component\HttpKernel\Client;
15-
use Symfony\Component\HttpFoundation\Request;
1615
use Symfony\Component\HttpFoundation\Response;
1716
use Symfony\Component\HttpFoundation\StreamedResponse;
1817
use Symfony\Component\HttpFoundation\Cookie;

Tests/Controller/ControllerResolverTest.php

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

1414
use Symfony\Component\HttpKernel\Controller\ControllerResolver;
15-
use Symfony\Component\HttpKernel\Tests\Logger;
1615
use Symfony\Component\HttpFoundation\Request;
1716

1817
class ControllerResolverTest extends \PHPUnit_Framework_TestCase

Tests/HttpCache/HttpCacheTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
namespace Symfony\Component\HttpKernel\Tests\HttpCache;
1313

1414
use Symfony\Component\HttpKernel\HttpCache\HttpCache;
15-
use Symfony\Component\HttpKernel\HttpCache\StoreInterface;
16-
use Symfony\Component\HttpKernel\HttpKernelInterface;
1715
use Symfony\Component\HttpFoundation\Request;
1816
use Symfony\Component\HttpFoundation\Response;
1917

Tests/KernelTest.php

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

1414
use Symfony\Component\HttpKernel\Kernel;
15-
use Symfony\Component\HttpKernel\Bundle\Bundle;
1615
use Symfony\Component\HttpKernel\HttpKernelInterface;
1716
use Symfony\Component\HttpFoundation\Request;
1817
use Symfony\Component\HttpFoundation\Response;

0 commit comments

Comments
 (0)