This repository has been archived on 2023-10-21. You can view files and clone it, but cannot push or open issues or pull requests.
patchouli/src/IPackageFile.php
2020-12-29 02:40:16 +00:00

13 lines
279 B
PHP

<?php
namespace Patchouli;
use FWIF\FWIFSerializable;
interface IPackageFile extends FWIFSerializable {
function getFileName(): string;
function getFileType(): string;
function isRemote(): bool;
function getRemoteUrl(): string;
function getLocalStream();
}