Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
33 | 2 | public static function tmpFile() |
|
34 | { |
||
35 | 2 | $handle = tmpfile(); |
|
36 | 2 | if (false === $handle) { |
|
37 | // @codeCoverageIgnoreStart |
||
38 | throw new UnexpectedValueException('Unable to create temporary file'); |
||
39 | // @codeCoverageIgnoreEnd |
||
40 | } |
||
41 | 2 | $meta = stream_get_meta_data($handle); |
|
42 | |||
43 | 2 | return array($handle, $meta['uri']); |
|
44 | } |
||
61 |