Skip to content

Commit 08c80eb

Browse files
committed
fixed CS
1 parent a8f9727 commit 08c80eb

File tree

11 files changed

+4
-11
lines changed

11 files changed

+4
-11
lines changed

src/Symfony/Component/Cache/Adapter/PhpArrayAdapter.php

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

1414
use Psr\Cache\CacheItemInterface;
1515
use Psr\Cache\CacheItemPoolInterface;
16-
use Symfony\Component\Cache\Adapter\AdapterInterface;
1716
use Symfony\Component\Cache\CacheItem;
1817
use Symfony\Component\Cache\Exception\InvalidArgumentException;
1918
use Symfony\Component\Cache\PruneableInterface;

src/Symfony/Component/DependencyInjection/Tests/DefinitionTest.php

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

1414
use PHPUnit\Framework\TestCase;
1515
use Symfony\Component\DependencyInjection\Definition;
16-
use Symfony\Component\DependencyInjection\Parameter;
1716
use Symfony\Component\DependencyInjection\Reference;
1817

1918
class DefinitionTest extends TestCase

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
use Symfony\Component\ErrorRenderer\ErrorRenderer;
2121
use Symfony\Component\ErrorRenderer\ErrorRenderer\HtmlErrorRenderer;
2222
use Symfony\Component\ErrorRenderer\Exception\ErrorRendererNotFoundException;
23-
use Symfony\Component\EventDispatcher\Event;
2423
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
2524
use Symfony\Component\HttpFoundation\Request;
2625
use Symfony\Component\HttpFoundation\Response;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
use Symfony\Component\HttpFoundation\Request;
1616
use Symfony\Component\HttpFoundation\RequestStack;
1717
use Symfony\Component\HttpKernel\Event\FinishRequestEvent;
18-
use Symfony\Component\HttpKernel\Event\RequestEvent;
1918
use Symfony\Component\HttpKernel\Event\KernelEvent;
19+
use Symfony\Component\HttpKernel\Event\RequestEvent;
2020
use Symfony\Component\HttpKernel\KernelEvents;
2121
use Symfony\Component\Routing\RequestContextAwareInterface;
2222

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
1515
use Symfony\Component\HttpFoundation\RequestMatcherInterface;
1616
use Symfony\Component\HttpFoundation\RequestStack;
17-
use Symfony\Component\HttpKernel\Event\ResponseEvent;
1817
use Symfony\Component\HttpKernel\Event\ExceptionEvent;
18+
use Symfony\Component\HttpKernel\Event\ResponseEvent;
1919
use Symfony\Component\HttpKernel\Event\TerminateEvent;
2020
use Symfony\Component\HttpKernel\KernelEvents;
2121
use Symfony\Component\HttpKernel\Profiler\Profiler;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
use Symfony\Component\HttpFoundation\Request;
1717
use Symfony\Component\HttpFoundation\RequestStack;
1818
use Symfony\Component\HttpFoundation\Response;
19+
use Symfony\Component\HttpKernel\Event\ExceptionEvent;
1920
use Symfony\Component\HttpKernel\Event\FinishRequestEvent;
2021
use Symfony\Component\HttpKernel\Event\RequestEvent;
21-
use Symfony\Component\HttpKernel\Event\ExceptionEvent;
2222
use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
2323
use Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException;
2424
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;

src/Symfony/Component/Messenger/Transport/Sender/SendersLocator.php

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

1414
use Psr\Container\ContainerInterface;
15-
use Symfony\Component\DependencyInjection\ServiceLocator;
1615
use Symfony\Component\Messenger\Envelope;
1716
use Symfony\Component\Messenger\Exception\RuntimeException;
1817
use Symfony\Component\Messenger\Exception\UnknownSenderException;

src/Symfony/Component/Security/Core/Authorization/Voter/ExpressionVoter.php

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

1414
use Symfony\Component\ExpressionLanguage\Expression;
15-
use Symfony\Component\ExpressionLanguage\ExpressionFunctionProviderInterface;
1615
use Symfony\Component\HttpFoundation\Request;
1716
use Symfony\Component\Security\Core\Authentication\AuthenticationTrustResolverInterface;
1817
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;

src/Symfony/Component/VarDumper/Caster/Caster.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,6 @@ public static function castPhpIncompleteClass(\__PHP_Incomplete_Class $c, array
158158
unset($a['__PHP_Incomplete_Class_Name']);
159159
}
160160

161-
162161
return $a;
163162
}
164163
}

src/Symfony/Component/Workflow/Tests/EventListener/GuardListenerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
use Symfony\Component\Security\Core\Authorization\AuthorizationCheckerInterface;
1010
use Symfony\Component\Security\Core\Role\RoleHierarchy;
1111
use Symfony\Component\Validator\Validator\ValidatorInterface;
12+
use Symfony\Component\Workflow\Event\GuardEvent;
1213
use Symfony\Component\Workflow\EventListener\ExpressionLanguage;
1314
use Symfony\Component\Workflow\EventListener\GuardExpression;
1415
use Symfony\Component\Workflow\EventListener\GuardListener;
15-
use Symfony\Component\Workflow\Event\GuardEvent;
1616
use Symfony\Component\Workflow\Marking;
1717
use Symfony\Component\Workflow\Tests\Subject;
1818
use Symfony\Component\Workflow\Transition;

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy