We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c065d4a commit 31534f3Copy full SHA for 31534f3
AbstractSoapClientBase.php
@@ -530,6 +530,24 @@ public function getLastErrorForMethod($methoName)
530
{
531
return array_key_exists($methoName, $this->lastError) ? $this->lastError[$methoName] : null;
532
}
533
+ /**
534
+ * Method returning current result from Soap call
535
+ * @return mixed
536
+ */
537
+ public function getResult()
538
+ {
539
+ return $this->result;
540
+ }
541
542
+ * Method setting current result from Soap call
543
+ * @param mixed $result
544
+ * @return AbstractSoapClientBase
545
546
+ protected function setResult($result)
547
548
+ $this->result = $result;
549
+ return $this;
550
551
/**
552
* Method returning actual class name
553
* @return string __CLASS__
0 commit comments