Conditions | 3 |
Paths | 3 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3.1406 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
42 | 14 | private static function createFile() |
|
43 | { |
||
44 | 14 | $dirname = sys_get_temp_dir(); |
|
45 | 14 | if (!is_writable($dirname)) { |
|
46 | throw new RuntimeException('Temporary files directory is not writable'); |
||
47 | } |
||
48 | |||
49 | 14 | $resource = tmpfile(); |
|
50 | 14 | if (!is_resource($resource)) { |
|
51 | throw new RuntimeException('Temporary file cannot be created or opened'); |
||
52 | } |
||
53 | |||
54 | 14 | return $resource; |
|
55 | } |
||
57 |