for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Meng\Soap;
class SoapRequest
{
private $endpoint;
private $soapAction;
private $soapVersion;
private $soapMessage;
/**
* @param string $endpoint
* @param string $soapAction
* @param string $soapVersion
* @param string $soapMessage
*/
public function __construct($endpoint, $soapAction, $soapVersion, $soapMessage)
$this->endpoint = $endpoint;
$this->soapAction = $soapAction;
$this->soapVersion = $soapVersion;
$this->soapMessage = $soapMessage;
}
* @return string
public function getEndpoint()
return $this->endpoint;
public function getSoapAction()
return $this->soapAction;
public function getSoapVersion()
return $this->soapVersion;
public function getSoapMessage()
return $this->soapMessage;