Conditions | 4 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 4 |
Changes | 0 |
1 | <?php |
||
27 | 56 | public function stream(mixed $content = ''): PsrStream |
|
28 | { |
||
29 | 56 | if (is_string($content) || $content instanceof Stringable) { |
|
30 | 50 | return $this->streamFactory->createStream((string)$content); |
|
31 | } |
||
32 | |||
33 | 9 | if (is_resource($content)) { |
|
34 | 5 | return $this->streamFactory->createStreamFromResource($content); |
|
35 | } |
||
36 | |||
37 | 4 | throw new RuntimeException('Only strings, Stringable or resources are allowed'); |
|
38 | } |
||
45 |