コード例 #1
0
ファイル: DeFormSpec.php プロジェクト: desmart/deform
 function it_renders_document(Document $document)
 {
     $document->toHtml()->willReturn('foo');
     $this->render()->shouldReturn('foo');
 }
コード例 #2
0
ファイル: DeForm.php プロジェクト: desmart/deform
 public function render()
 {
     return $this->document->toHtml();
 }