Conditions | 3 |
Paths | 4 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3.0261 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
37 | 1 | protected function generateTemporalFileName(?string $ext = null): string |
|
38 | { |
||
39 | 1 | $name = tempnam(sys_get_temp_dir(), 'gen_pdf_image_qr'); |
|
40 | 1 | if ($ext) { |
|
41 | 1 | $name = "{$name}.{$ext}"; |
|
42 | } |
||
43 | 1 | if (!$name) { |
|
44 | throw new \Exception('Temporal file name can\'t be created.'); |
||
45 | } |
||
46 | |||
47 | 1 | return $name; |
|
48 | } |
||
61 |