コード例 #1
0
ファイル: SAFHTML.php プロジェクト: sgdoc/sgdoce-codigo
 /**
  * @return string
  * */
 public function render()
 {
     return $this->_document->render();
 }
コード例 #2
0
ファイル: Document.php プロジェクト: sgdoc/sgdoce-codigo
 /**
  * @override
  * */
 public function render()
 {
     $content = self::T_DOCTYPE;
     $content .= parent::render();
     return $content;
 }