Skip to content

Commit f9f5e93

Browse files
authored
Merge pull request #79 from ibpavlov/patch-1
Fix TypeCasing for PhpDoc
2 parents 0ceaaef + 0dcfc94 commit f9f5e93

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/Pdf.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class Pdf
2525
public $ignoreWarnings = false;
2626

2727
/**
28-
* @var mikehaertl\tmp\File the temporary output file
28+
* @var File the temporary output file
2929
*/
3030
protected $_tmpFile;
3131

@@ -207,7 +207,7 @@ public function burst($filepattern = null)
207207
* Generate the FDF file for a single PDF file.
208208
*
209209
* @param string $name name of the FDF file
210-
* @return Pdf the pdf instance for method chaining
210+
* @return bool whether the pdf is generated successful
211211
*/
212212
public function generateFdfFile($name)
213213
{
@@ -221,9 +221,9 @@ public function generateFdfFile($name)
221221
* Fill a PDF form
222222
*
223223
* @param string|array $data either a XFDF/FDF filename or an array with form field data (name => value)
224-
* @param string the encoding of the data. Default is 'UTF-8'.
225-
* @param bool whether to drop XFA forms (see dropXfa()). Default is true.
226-
* @param string the file format to use for form filling when passing an array in `$data`. This can be
224+
* @param string $encoding the encoding of the data. Default is 'UTF-8'.
225+
* @param bool $dropXfa whether to drop XFA forms (see dropXfa()). Default is true.
226+
* @param string $format the file format to use for form filling when passing an array in `$data`. This can be
227227
* `xfdf` or `fdf`. `xfdf` should give best results so you should not have to change the default.
228228
* @return Pdf the pdf instance for method chaining
229229
*/
@@ -530,7 +530,7 @@ public function getCommand()
530530
}
531531

532532
/**
533-
* @return mikehaertl\tmp\File the temporary output file instance
533+
* @return File the temporary output file instance
534534
*/
535535
public function getTmpFile()
536536
{

0 commit comments

Comments
 (0)