| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 47 | public function createStreamFromResource($resource): StreamInterface |
||
| 48 | { |
||
| 49 | /** @psalm-suppress DocblockTypeContradiction */ |
||
| 50 | if (! is_resource($resource)) { |
||
| 51 | throw new \InvalidArgumentException('Invalid resource, cannot create stream.'); |
||
| 52 | } |
||
| 53 | |||
| 54 | return new Stream($resource); |
||
| 55 | } |
||
| 56 | } |
||
| 57 |