for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Goetas\XML\XSDReader\Schema\Type;
use Goetas\XML\XSDReader\Schema\Element\ElementContainer;
use Goetas\XML\XSDReader\Schema\Element\ElementItem;
class ComplexType extends BaseComplexType implements ElementContainer
{
protected $elements = array();
public function getElements()
return $this->elements;
}
public function addElement(ElementItem $element)
$this->elements[] = $element;