for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
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;
public function getFixed(): ?string
return $this->fixed;
}
public function setFixed(string $fixed): void
$this->fixed = $fixed;
public function getDefault(): ?string
return $this->default;
public function setDefault(string $default): void
$this->default = $default;