审查视图

vendor/nelexa/zip/src/Model/ZipData.php 456 字节
李忠强 authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
<?php

namespace PhpZip\Model;

use PhpZip\Exception\ZipException;

/**
 * Interface ZipData.
 */
interface ZipData
{
    /**
     * @return string returns data as string
     */
    public function getDataAsString();

    /**
     * @return resource returns stream data
     */
    public function getDataAsStream();

    /**
     * @param resource $outStream
     *
     * @throws ZipException
     */
    public function copyDataToStream($outStream);
}