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