コード例 #1
0
ファイル: DtdLeaf.php プロジェクト: simphotonics/dom
 /**
  * Constructs object
  * @param Array|array $input
  */
 public function __construct(array $input = [])
 {
     parent::__construct($input);
     if (isset($input['name'])) {
         $this->name = $input['name'];
     }
 }
コード例 #2
0
ファイル: HtmlLeaf.php プロジェクト: simphotonics/dom
 /**
  * Constructs object
  * @param Array|array $input
  */
 public function __construct(array $input = [])
 {
     parent::__construct($input);
 }