@@ -25,7 +25,7 @@ class Pdf
25
25
public $ ignoreWarnings = false ;
26
26
27
27
/**
28
- * @var mikehaertl\tmp\ File the temporary output file
28
+ * @var File the temporary output file
29
29
*/
30
30
protected $ _tmpFile ;
31
31
@@ -207,7 +207,7 @@ public function burst($filepattern = null)
207
207
* Generate the FDF file for a single PDF file.
208
208
*
209
209
* @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
211
211
*/
212
212
public function generateFdfFile ($ name )
213
213
{
@@ -221,9 +221,9 @@ public function generateFdfFile($name)
221
221
* Fill a PDF form
222
222
*
223
223
* @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
227
227
* `xfdf` or `fdf`. `xfdf` should give best results so you should not have to change the default.
228
228
* @return Pdf the pdf instance for method chaining
229
229
*/
@@ -530,7 +530,7 @@ public function getCommand()
530
530
}
531
531
532
532
/**
533
- * @return mikehaertl\tmp\ File the temporary output file instance
533
+ * @return File the temporary output file instance
534
534
*/
535
535
public function getTmpFile ()
536
536
{
0 commit comments