Skip to content

Commit

Permalink
Standardized FPDFPlus method names.
Browse files Browse the repository at this point in the history
  • Loading branch information
rudissaar committed Nov 20, 2017
1 parent 902a9c9 commit 323648d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions FPDFPlus.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class FPDFPlus extends FPDF
* @param string $text
* @param string $link
*/
public function writeLn($height, $text, $link = '')
public function WriteLn($height, $text, $link = '')
{
$this->Write($height, $text, $link);
$this->Ln();
Expand All @@ -24,8 +24,8 @@ public function writeLn($height, $text, $link = '')
* @param string $hmtl
* @param string $link
*/
public function writeHtml($height, $html, $link = '')
public function WriteHtml($height, $html, $link = '')
{
$this->writeLn($height, strip_tags($html), $link);
$this->WriteLn($height, strip_tags($html), $link);
}
}

0 comments on commit 323648d

Please sign in to comment.