Conditions | 4 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 4.5923 |
Changes | 0 |
1 | <?php |
||
18 | 2 | public function getStream($stream, $mode = 'r') |
|
19 | { |
||
20 | 2 | if ($stream instanceof StreamInterface) { |
|
21 | return $stream; |
||
22 | } |
||
23 | |||
24 | 2 | if (!is_string($stream) && !is_resource($stream)) { |
|
25 | throw new \InvalidArgumentException('Stream must be a string or resource.'); |
||
26 | } |
||
27 | |||
28 | 2 | return new Stream($stream, $mode); |
|
29 | } |
||
42 |