| Total Complexity | 1 |
| Total Lines | 11 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php declare(strict_types=1); |
||
| 15 | final class Stream extends AbstractReader |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * Initializes a new instance of this class. |
||
| 19 | * |
||
| 20 | * @param resource $stream The stream to read from. |
||
| 21 | * @throws InvalidArgumentException Thrown when the stream is not valid. |
||
| 22 | */ |
||
| 23 | public function __construct($stream) |
||
| 28 |