Completed
Push — master ( 5887b2...aa1927 )
by Indra
04:23 queued 01:27
created
Builder.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
      */
36 36
     public function commandToRequestTransformer()
37 37
     {
38
-        return function (CommandInterface $command) {
38
+        return function(CommandInterface $command) {
39 39
             if (!$this->service->hasOperation($command->getName())) {
40 40
                 throw new CommandException(sprintf(
41 41
                     'Command "%s" not found',
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
      */
90 90
     public function responseToResultTransformer()
91 91
     {
92
-        return function (
92
+        return function(
93 93
             ResponseInterface $response,
94 94
             RequestInterface $request,
95 95
             CommandInterface $command
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 
115 115
     public function badResponseExceptionParser()
116 116
     {
117
-        return function (CommandInterface $command, GuzzleBadResponseException $e) {
117
+        return function(CommandInterface $command, GuzzleBadResponseException $e) {
118 118
             $operation = $this->service->getOperation($command->getName());
119 119
 
120 120
             return $this->processResponseError(
Please login to merge, or discard this patch.