wiki.techinc.nl/includes/Rest/CopyableStreamInterface.php
Tim Starling e8f90b8a26 StringStream::copyToStream() should adjust the offset
As Stream is assumed to do.

Change-Id: I25ed0da8e8ca1b4393f88e64ecf7b96484ce8118
2019-06-12 10:22:34 +10:00

21 lines
609 B
PHP

<?php
namespace MediaWiki\Rest;
/**
* An interface for a stream with a copyToStream() function.
*/
interface CopyableStreamInterface extends \Psr\Http\Message\StreamInterface {
/**
* Copy this stream to a specified stream resource. For some streams,
* this can be implemented without a tight loop in PHP code.
*
* Equivalent to reading from the object until EOF and writing the
* resulting data to $stream. The position will be advanced to the end.
*
* Note that $stream is not a StreamInterface object.
*
* @param resource $stream Destination
*/
function copyToStream( $stream );
}