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