Passed
Push — master ( 8676d6...667aed )
by Meng
01:36 queued 12s
created
src/Interpreter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
      * @param array  $options           Supported options: location, uri, style, use, soap_version, encoding,
13 13
      *                                  exceptions, classmap, typemap, cache_wsdl and features.
14 14
      */
15
-    public function __construct($wsdl, array $options = [])
15
+    public function __construct($wsdl, array $options = [ ])
16 16
     {
17 17
         $this->soap = new Soap($wsdl, $options);
18 18
     }
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
      * @param mixed  $input_headers     An array of headers to be interpreted along with the SOAP request.
30 30
      * @return SoapRequest
31 31
      */
32
-    public function request($function_name, array $arguments = [], array $options = null, $input_headers = null):  SoapRequest
32
+    public function request($function_name, array $arguments = [ ], array $options = null, $input_headers = null):  SoapRequest
33 33
     {
34 34
         return $this->soap->request($function_name, $arguments, $options, $input_headers);
35 35
     }
Please login to merge, or discard this patch.