for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace GoetasWebservices\SoapServices\SoapClient\Envelope\SoapEnvelope12\Parts;
/**
* Class representing DoSomethingInput
*/
class Fault
{
* @var FaultCode
private $code;
* @var string[]
private $reason = [];
* @var string
private $detail;
private $role;
private $node;
* @return string
public function getDetail()
return $this->detail;
}
* @param string $detail
public function setDetail($detail)
$this->detail = $detail;
public function getRole()
return $this->role;
* @param string $role
* @return Fault
public function setRole($role)
$this->role = $role;
public function getNode()
return $this->node;
* @param string $node
public function setNode($node)
$this->node = $node;
public function getCode()
return $this->code;
* @param FaultCode $code
public function setCode($code)
$this->code = $code;
* @return string[]
public function getReason()
return $this->reason;
* @param string[] $reason
public function setReason(array $reason)
$this->reason = $reason;