Example #1
0
File: Text.php Project: techart/tao
 /**
  * Конструктор
  * 
  */
 public function __construct($name)
 {
     $this->text = Text::Builder();
     parent::__construct($name);
 }
Example #2
0
File: XML.php Project: techart/tao
 /**
  * Конструктор
  * 
  * @param string $name
  */
 public function __construct($name)
 {
     $this->xml = XML::Builder();
     parent::__construct($name);
 }