MediaWiki
master
Stream.php
Go to the documentation of this file.
1
<?php
2
3
namespace
MediaWiki\Rest
;
4
5
use GuzzleHttp\Psr7;
6
7
class
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
}
MediaWiki\Rest\Stream
Definition
Stream.php:7
MediaWiki\Rest\Stream\copyToStream
copyToStream( $target)
Copy this stream to a specified stream resource.
Definition
Stream.php:16
MediaWiki\Rest\Stream\__construct
__construct( $stream, $options=[])
Definition
Stream.php:11
MediaWiki\Rest\CopyableStreamInterface
An interface for a stream with a copyToStream() function.
Definition
CopyableStreamInterface.php:10
MediaWiki\Rest
includes
Rest
Stream.php
Generated on Wed Jun 18 2025 12:01:43 for MediaWiki by
1.10.0