Skip to content

Commit f91f146

Browse files
authored
Remove useless use statements (#30)
1 parent 06b6f14 commit f91f146

File tree

7 files changed

+1
-9
lines changed

7 files changed

+1
-9
lines changed

src/JsonRpcHttpServerBundle.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
namespace Yoanm\SymfonyJsonRpcHttpServer;
33

44
use Symfony\Component\HttpKernel\Bundle\Bundle;
5-
use Yoanm\SymfonyJsonRpcHttpServer\DependencyInjection\JsonRpcHttpServerExtension;
65

76
/**
87
* Class JsonRpcHttpServerBundle

tests/Common/DependencyInjection/AbstractTestClass.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
use Symfony\Component\EventDispatcher\EventDispatcher;
77
use Tests\Common\Mock\ConcreteJsonRpcMethod;
88
use Tests\Common\Mock\ConcreteResolver;
9-
use Yoanm\JsonRpcServer\Domain\JsonRpcMethodInterface;
109
use Yoanm\JsonRpcServer\Domain\JsonRpcMethodResolverInterface;
1110
use Yoanm\SymfonyJsonRpcHttpServer\DependencyInjection\JsonRpcHttpServerExtension;
1211

tests/Functional/DependencyInjection/ConfigFilesTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
namespace Tests\Functional\DependencyInjection;
33

44
use Tests\Common\DependencyInjection\AbstractTestClass;
5-
use Tests\Common\Mock\ConcreteResolver;
65
use Yoanm\JsonRpcServer\App\Creator\ResponseCreator;
76
use Yoanm\JsonRpcServer\App\Handler\ExceptionHandler;
87
use Yoanm\JsonRpcServer\App\Handler\JsonRpcRequestHandler;

tests/Functional/DependencyInjection/JsonRpcMethodDefinitionHelperTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22
namespace Tests\Functional\DependencyInjection;
33

4-
use Tests\Common\DependencyInjection\AbstractTestClass;
54
use Symfony\Component\DependencyInjection\Exception\LogicException;
5+
use Tests\Common\DependencyInjection\AbstractTestClass;
66
use Yoanm\JsonRpcServer\Domain\JsonRpcMethodInterface;
77
use Yoanm\SymfonyJsonRpcHttpServer\DependencyInjection\JsonRpcMethodDefinitionHelper;
88

tests/Functional/Dispatcher/SymfonyJsonRpcServerDispatcherTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,7 @@
55
use Prophecy\Argument;
66
use Prophecy\Prophecy\ObjectProphecy;
77
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
8-
use Symfony\Component\HttpFoundation\Request;
9-
use Symfony\Component\HttpFoundation\Response;
108
use Yoanm\JsonRpcServer\Domain\Event\JsonRpcServerEvent;
11-
use Yoanm\JsonRpcServer\Infra\Endpoint\JsonRpcEndpoint as SDKJsonRpcEndpoint;
129
use Yoanm\SymfonyJsonRpcHttpServer\Dispatcher\SymfonyJsonRpcServerDispatcher;
1310
use Yoanm\SymfonyJsonRpcHttpServer\Event\SymfonyJsonRpcServerEvent;
1411

tests/Functional/Endpoint/JsonRpcHttpEndpointTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
namespace Tests\Functional\Endpoint;
33

44
use PHPUnit\Framework\TestCase;
5-
use Prophecy\Argument;
65
use Prophecy\Prophecy\ObjectProphecy;
76
use Symfony\Component\HttpFoundation\Request;
87
use Symfony\Component\HttpFoundation\Response;

tests/Functional/Event/SymfonyJsonRpcServerEventTest.php

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

44
use PHPUnit\Framework\TestCase;
55
use Prophecy\Prophecy\ObjectProphecy;
6-
use Symfony\Component\EventDispatcher\Event;
76
use Yoanm\JsonRpcServer\Domain\Event\JsonRpcServerEvent;
87
use Yoanm\SymfonyJsonRpcHttpServer\Event\SymfonyJsonRpcServerEvent;
98

0 commit comments

Comments
 (0)