for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace GoetasWebservices\SoapServices\SoapClient\WssWsSecurity\XmlSign;
/**
* Class representing ManifestType
*
* XSD Type: ManifestType
*/
class ManifestType
{
* @property string $id
private $id = null;
* @property
* \GoetasWebservices\SoapServices\SoapClient\WssWsSecurity\XmlSign\Reference[]
* $reference
private $reference = 'array()';
* Gets as id
* @return string
public function getId()
return $this->id;
}
* Sets a new id
* @param string $id
* @return self
public function setId($id)
$this->id = $id;
return $this;
* Adds as reference
* @param
* \GoetasWebservices\SoapServices\SoapClient\WssWsSecurity\XmlSign\Reference
public function addToReference(\GoetasWebservices\SoapServices\SoapClient\WssWsSecurity\XmlSign\Reference $reference)
$this->reference[] = $reference;
* isset reference
* @param scalar $index
* @return boolean
public function issetReference($index)
return isset($this->reference[$index]);
* unset reference
* @return void
public function unsetReference($index)
unset($this->reference[$index]);
* Gets as reference
* @return
public function getReference()
return $this->reference;
* Sets a new reference
public function setReference(array $reference)
$this->reference = $reference;
$reference
array
string
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..