Passed
Branch master (207747)
by Pavel
02:20
created
Category
src/ScayTrase/Api/JsonRpc/Tests/JsonRpcClientTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
         $guzzle = $this->prophesize(ClientInterface::class);
59 59
         $self = $this;
60 60
         $guzzle->sendAsync(Argument::type(RequestInterface::class))->will(
61
-            function ($args) use ($self, $params, $isArray) {
61
+            function($args) use ($self, $params, $isArray) {
62 62
                 /** @var RequestInterface $request */
63 63
                 $request = $args[0];
64 64
                 $content = $request->getBody()->getContents();
@@ -79,9 +79,9 @@  discard block
 block discarded – undo
79 79
                 $self::assertEquals($params, $data->params);
80 80
 
81 81
                 return new Promise(
82
-                    function () {
82
+                    function() {
83 83
                     },
84
-                    function () {
84
+                    function() {
85 85
                     }
86 86
                 );
87 87
             }
Please login to merge, or discard this patch.