Completed
Pull Request — master (#8)
by
unknown
04:01
created
src/Factory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,9 +19,9 @@
 block discarded – undo
19 19
             );
20 20
         } else {
21 21
             $httpBindingPromise = $client->requestAsync('GET', $wsdl)->then(
22
-                function (ResponseInterface $response) use ($options) {
22
+                function(ResponseInterface $response) use ($options) {
23 23
                     $wsdl = $response->getBody()->__toString();
24
-                    $interpreter = new Interpreter('data://text/plain;base64,' . base64_encode($wsdl), $options);
24
+                    $interpreter = new Interpreter('data://text/plain;base64,'.base64_encode($wsdl), $options);
25 25
                     return new HttpBinding($interpreter, new RequestBuilder);
26 26
                 }
27 27
             );
Please login to merge, or discard this patch.
src/SoapClient.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
     public function callAsync($name, array $arguments, array $options = null, $inputHeaders = null, array &$outputHeaders = null)
34 34
     {
35 35
         return \GuzzleHttp\Promise\coroutine(
36
-            function () use ($name, $arguments, $options, $inputHeaders, &$outputHeaders) {
36
+            function() use ($name, $arguments, $options, $inputHeaders, &$outputHeaders) {
37 37
                 /** @var HttpBinding $httpBinding */
38 38
                 $httpBinding = (yield $this->deferredHttpBinding);
39 39
                 $request = $httpBinding->request($name, $arguments, $options, $inputHeaders);
Please login to merge, or discard this patch.
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -56,6 +56,9 @@
 block discarded – undo
56 56
         );
57 57
     }
58 58
 
59
+    /**
60
+     * @param string $name
61
+     */
59 62
     private function parseResponse(HttpBinding $httpBinding, ResponseInterface $response, $name, &$outputHeaders)
60 63
     {
61 64
         try {
Please login to merge, or discard this patch.