Completed
Push — master ( 39712c...02e5d6 )
by Sergey
02:48
created
src/Sender.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,9 @@
 block discarded – undo
44 44
      */
45 45
     protected function callRequestMethod(RequestInterface $request, $method, array $arguments)
46 46
     {
47
-        if(empty($arguments)) return $request->{$method}();
47
+        if(empty($arguments)) {
48
+            return $request->{$method}();
49
+        }
48 50
 
49 51
         switch (count($arguments)) {
50 52
             case 1:
Please login to merge, or discard this patch.