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;
abstract class AbstractAttributeItem extends Item implements AttributeItem
{
/**
* @var string|null
*/
protected $fixed;
protected $default;
* @return string|null
public function getFixed()
return $this->fixed;
}
* @param string $fixed
*
* @return $this
public function setFixed($fixed)
$this->fixed = $fixed;
return $this;
public function getDefault()
return $this->default;
* @param string $default
public function setDefault($default)
$this->default = $default;