| 1 | <?php |
||
| 11 | class ReadableStream extends BaseStream implements ReadableStreamInterface |
||
| 12 | { |
||
| 13 | 24 | public function __construct() |
|
| 17 | |||
| 18 | /** |
||
| 19 | * {@inheritDoc} |
||
| 20 | */ |
||
| 21 | 8 | public function isReadable() : bool |
|
| 25 | |||
| 26 | /** |
||
| 27 | * {@inheritDoc} |
||
| 28 | */ |
||
| 29 | 2 | public function pause() : self |
|
| 33 | |||
| 34 | /** |
||
| 35 | * {@inheritDoc} |
||
| 36 | */ |
||
| 37 | 2 | public function resume() : self |
|
| 41 | |||
| 42 | /** |
||
| 43 | * {@inheritDoc} |
||
| 44 | */ |
||
| 45 | 9 | public function pipe(WritableStreamInterface $dest, array $options = []) |
|
| 51 | } |
||
| 52 |