コード例 #1
0
ファイル: Text.php プロジェクト: baerdaniel/MAT-wordpress
 /**
  * @param string $text Text
  */
 public function __construct($text)
 {
     parent::__construct(null);
     $this->text = $text;
 }
コード例 #2
0
ファイル: Element.php プロジェクト: baerdaniel/MAT-wordpress
 /**
  * {@inheritdoc}
  */
 public function __construct($tagName, array $attributes = array())
 {
     parent::__construct($tagName, $attributes);
     $this->elements = array();
 }