Passed
Pull Request — master (#11)
by Pavel
06:35
created
Exception/RpcMethodNotFoundException.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
             );
37 37
     }
38 38
 
39
-    /** @return JsonRpcErrorInterface */
39
+    /** @return JsonRpcRequestInterface */
40 40
     public function getJsonRpcError()
41 41
     {
42 42
         return $this->error;
Please login to merge, or discard this patch.
DependencyInjection/BankiruJsonRpcServerExtension.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Bankiru\Api\JsonRpc\DependencyInjection;
4 4
 
5
-use Bankiru\Api\JsonRpc\Adapters\JMS\Compiler\JmsDriverPass;
6 5
 use Bankiru\Api\JsonRpc\Adapters\JMS\Compiler\RelationHandlerHelper;
7 6
 use Bankiru\Api\Rpc\RpcEvents;
8 7
 use JMS\SerializerBundle\JMSSerializerBundle;
Please login to merge, or discard this patch.
Tests/JsonRpcControllerTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -165,6 +165,9 @@
 block discarded – undo
165 165
         );
166 166
     }
167 167
 
168
+    /**
169
+     * @param string $uri
170
+     */
168 171
     private function createJsonRequest($uri, $content)
169 172
     {
170 173
         return Request::create($uri, 'POST', [], [], [], [], json_encode($content));
Please login to merge, or discard this patch.