MediaWiki master
CopyableStreamInterface.php
Go to the documentation of this file.
1<?php
2
3namespace MediaWiki\Rest;
4
5use Psr\Http\Message\StreamInterface;
6
10interface CopyableStreamInterface extends StreamInterface {
22 public function copyToStream( $stream );
23}
An interface for a stream with a copyToStream() function.
copyToStream( $stream)
Copy this stream to a specified stream resource.