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