Exemple #1
0
 /**
  * @param string $text
  * @param XMLElement $parent
  */
 function __construct($text, XMLElement $parent = null)
 {
     $this->text = $text;
     if ($parent) {
         $this->parent = $parent;
         $parent->adopt($this);
     }
 }