示例#1
0
 /**
  * Constructor.
  *
  * @param string        $name
  * @param NodeInterface $parent
  */
 public function __construct($name, NodeInterface $parent = null)
 {
     parent::__construct($name, $parent);
 }
示例#2
0
 /**
  * Constructor.
  *
  * @param string        $name
  * @param NodeInterface $parent
  */
 public function __construct($name, NodeInterface $parent = null)
 {
     parent::__construct($name, $parent);
     //$this->setIgnoreExtraKeys(true);
 }
 /**
  * Constructor.
  *
  * @param string        $name   The Node's name
  * @param NodeInterface $parent The node parent
  */
 public function __construct($name, NodeInterface $parent = null)
 {
     parent::__construct($name, $parent);
     $this->minNumberOfElements = 0;
     $this->defaultValue = array();
 }
 /**
  * Constructor.
  *
  * @param string $name The Node's name
  * @param NodeInterface $parent The node parent
  */
 public function __construct($name, NodeInterface $parent = null)
 {
     parent::__construct($name, $parent);
     $this->minNumberOfElements = 0;
 }