Skip to content
This repository has been archived by the owner on Apr 11, 2024. It is now read-only.

Commit

Permalink
dompdf#1502 | Added phpdoc and removed unused option parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
simonberger authored and bsweeney committed Sep 14, 2017
1 parent 05d60b2 commit ddcc832
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions lib/Cpdf.php
Original file line number Diff line number Diff line change
Expand Up @@ -951,7 +951,14 @@ protected function o_font($id, $action, $options = '')
return null;
}

protected function o_toUnicode($id, $action, $options = '')
/**
* A toUnicode section, needed for unicode fonts
*
* @param $id
* @param $action
* @return null|string
*/
protected function o_toUnicode($id, $action)
{
switch ($action) {
case 'new':
Expand Down Expand Up @@ -1213,7 +1220,14 @@ protected function o_fontDescendentCID($id, $action, $options = '')
return null;
}

protected function o_cidSystemInfo($id, $action, $options = '')
/**
* CID system info section, needed for unicode fonts
*
* @param $id
* @param $action
* @return null|string
*/
protected function o_cidSystemInfo($id, $action)
{
switch ($action) {
case 'new':
Expand Down

0 comments on commit ddcc832

Please sign in to comment.