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