MediaWiki master
Stream.php
Go to the documentation of this file.
1<?php
2
3namespace MediaWiki\Rest;
4
5use GuzzleHttp\Psr7;
6
7class Stream extends Psr7\Stream implements CopyableStreamInterface {
9 private $stream;
10
11 public function __construct( $stream, $options = [] ) {
12 $this->stream = $stream;
13 parent::__construct( $stream, $options );
14 }
15
16 public function copyToStream( $target ) {
17 stream_copy_to_stream( $this->stream, $target );
18 }
19}
copyToStream( $target)
Copy this stream to a specified stream resource.
Definition Stream.php:16
__construct( $stream, $options=[])
Definition Stream.php:11
An interface for a stream with a copyToStream() function.