Conditions | 3 |
Paths | 3 |
Total Lines | 14 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 3.0175 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | 5 | protected function toString($content): string |
|
24 | { |
||
25 | 5 | if (is_resource($content)) { |
|
26 | 3 | rewind($content); |
|
27 | 3 | $data = stream_get_contents($content, -1, 0); |
|
28 | 3 | if (false === $data) { |
|
29 | // @codeCoverageIgnoreStart |
||
30 | // must die something with stream reading |
||
31 | throw new MenuException($this->getMnLang()->mnCannotOpen()); |
||
32 | } |
||
33 | // @codeCoverageIgnoreEnd |
||
34 | 3 | return strval($data); |
|
35 | } else { |
||
36 | 2 | return strval($content); |
|
37 | } |
||
40 |