$arguments is expanded, but the parameter $content of ThinkQR\Image\QrCodeImageForPdf::__construct() does not expect variable arguments.
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-type annotation
21
return new static(/** @scrutinizer ignore-type */ ...$arguments);
Loading history...
22
}
23
24
1
public function filePath(): string
25
{
26
1
return $this->tmpFileName;
27
}
28
29
/**
30
* Create temporal file name.
31
*
32
* @param string|null $ext
33
*
34
* @return string
35
* @throws \Exception
36
*/
37
1
protected function generateTemporalFileName(?string $ext = null): string