#441 (added @since annotation).

This commit is contained in:
Roman Syroeshko 2014-12-17 21:39:19 +04:00
parent 56cd78440d
commit fbfde2e0ee
1 changed files with 3 additions and 0 deletions

View File

@ -27,6 +27,8 @@ class PageBreak extends TextBreak
/**
* Write page break
*
* @since 0.12.0
*
* @return string
*/
public function write()
@ -36,6 +38,7 @@ class PageBreak extends TextBreak
if ($parentWriter->isPdf()) {
return '<pagebreak style="page-break-before: always;" pagebreak="true"></pagebreak>';
}
return "";
}
}