File: /python/moda/public_html/tech/old/vendor/http-interop/http-factory/src/StreamFactoryInterface.php
<?php
namespace Interop\Http\Factory;
use Psr\Http\Message\StreamInterface;
interface StreamFactoryInterface
{
/**
* Create a new stream from a string.
*
* The stream SHOULD be created with a temporary resource.
*
* @param string $content
*
* @return StreamInterface
*/
public function createStream($content = '');
/**
* Create a stream from an existing file.
*
* The file MUST be opened using the given mode, which may be any mode
* supported by the `fopen` function.
*
* @param string $file
* @param string $mode
*
* @return StreamInterface
*/
public function createStreamFromFile($file, $mode = 'r');
/**
* Create a new stream from an existing resource.
*
* The stream MUST be readable and may be writable.
*
* @param resource $resource
*
* @return StreamInterface
*/
public function createStreamFromResource($resource);
}