Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
21 | * |
||
22 | * @return string |
||
23 | */ |
||
24 | private static function tempFile(): string |
||
25 | { |
||
26 | return tempnam(sys_get_temp_dir(), 'ghostscript') . '.pdf'; |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | public function regeneratePdf(string $pdfContents): string |
||
33 | { |
||
34 | file_put_contents($input = static::tempFile(), $pdfContents); |
||
35 | |||
36 | (new Process([ |
||
37 | $this->bin, |
||
38 | '-sDEVICE=pdfwrite', |
||
50 |