for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace GoetasWebservices\XML\XSDReader\Schema\Attribute;
use GoetasWebservices\XML\XSDReader\Schema\Item;
class Attribute extends Item implements AttributeSingle
{
/**
* @var static|null
*/
protected $fixed;
protected $default;
* @var bool
protected $qualified = true;
protected $nil = false;
* @var string
protected $use = self::USE_OPTIONAL;
* @return static|null
public function getFixed()
return $this->fixed;
}
* @param static $fixed
*
* @return $this
public function setFixed($fixed)
$this->fixed = $fixed;
return $this;
public function getDefault()
return $this->default;
* @param static $default
public function setDefault($default)
$this->default = $default;
* @return bool
public function isQualified()
return $this->qualified;
* @param bool $qualified
public function setQualified($qualified)
$this->qualified = $qualified;
public function isNil()
return $this->nil;
* @param bool $nil
public function setNil($nil)
$this->nil = $nil;
* @return string
public function getUse()
return $this->use;
* @param string $use
public function setUse($use)
$this->use = $use;