Test Setup Failed
Push — master ( 49fb5f...c2fd16 )
by Marcin
05:26 queued 03:09
created
src/Config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
             $this->getLogger()->debug(sprintf('REQ: %s', $method), $args);
103 103
 
104 104
             $resp = $this->oCacheAdapter->useCache(
105
-                static function () use ($self, $method, $args) {
105
+                static function() use ($self, $method, $args) {
106 106
                     $res       = $self->getSoap()->__soapCall($method, [$args]);
107 107
                     $resultKey = $method . 'Result';
108 108
                     if (!property_exists($res, $resultKey)) {
Please login to merge, or discard this patch.
src/WSASoap.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -34,11 +34,11 @@  discard block
 block discarded – undo
34 34
     /**
35 35
      * @var \DOMDocument|null
36 36
      */
37
-    private $soapDoc   = null;
37
+    private $soapDoc = null;
38 38
     /**
39 39
      * @var \DOMElement|null
40 40
      */
41
-    private $envelope  = null;
41
+    private $envelope = null;
42 42
     /**
43 43
      * @var \DOMXPath|null
44 44
      */
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
     /**
47 47
      * @var \DOMElement|\DOMNode|null
48 48
      */
49
-    private $header    = null;
49
+    private $header = null;
50 50
 
51 51
     public function __construct(DOMDocument $doc)
52 52
     {
Please login to merge, or discard this patch.