www.gusucode.com > Elgg PHP开源SNS系统 V1.12.5源码程序 > elgg-1.12.5/vendor/knplabs/gaufrette/src/Gaufrette/Adapter/StreamFactory.php

    <?php

namespace Gaufrette\Adapter;

/**
 * Interface for the stream creation class
 *
 * @author Leszek Prabucki <leszek.prabucki@gmail.com>
 */
interface StreamFactory
{
    /**
     * Creates a new stream instance of the specified file
     *
     * @param string $key
     *
     * @return Gaufrette\Stream
     */
    public function createStream($key);
}