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/IPackageTarget.php

11 lines
219 B
PHP
Raw Normal View History

2020-12-29 02:40:16 +00:00
<?php
namespace Patchouli;
use FWIF\FWIFSerializable;
interface IPackageTarget extends FWIFSerializable {
function getPlatform(): Platform;
function getFiles(): array;
function getDependencies(): array;
}