Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2.0185 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
38 | 36 | protected static function getStorageResource(string $path) |
|
39 | { |
||
40 | 36 | $res = fopen($path, 'rw'); |
|
41 | 36 | if (false === $res) { |
|
42 | // @codeCoverageIgnoreStart |
||
43 | throw new RequestException('Cannot open temporary storage!'); |
||
44 | } |
||
45 | // @codeCoverageIgnoreEnd |
||
46 | 36 | rewind($res); |
|
47 | 36 | return $res; |
|
48 | } |
||
50 |