Completed
Push — master ( 21f007...627e2a )
by Meng
02:03
created
tests/SoapClientTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
             new RequestBuilder(),
26 26
             'http://www.webservicex.net/Statistics.asmx?WSDL'
27 27
         );
28
-        $response = $client->call('GetStatistics', [['X' => [1,2,3]]]);
28
+        $response = $client->call('GetStatistics', [['X' => [1, 2, 3]]]);
29 29
         $this->assertNotEmpty($response);
30 30
     }
31 31
 
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
         $response = $client->callAsync($function, $args)->wait();
45 45
         $this->assertNotEmpty($response);
46 46
         foreach ($contains as $contain) {
47
-            $this->assertArrayHasKey($contain, (array)$response);
47
+            $this->assertArrayHasKey($contain, (array) $response);
48 48
         }
49 49
     }
50 50
 
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
                 'wsdl' => 'http://www.webservicex.net/Statistics.asmx?WSDL',
56 56
                 'options' => [],
57 57
                 'function' => 'GetStatistics',
58
-                'args' => [['X' => [1,2,3]]],
58
+                'args' => [['X' => [1, 2, 3]]],
59 59
                 'contains' => [
60 60
                     'Sums', 'Average', 'StandardDeviation', 'skewness', 'Kurtosis'
61 61
                 ]
Please login to merge, or discard this patch.