← Back
Editing: Uninstall.php
<?php declare(strict_types=1); namespace Php\Pie\Installing; use Php\Pie\DependencyResolver\Package; use Php\Pie\File\BinaryFile; use Php\Pie\Platform\TargetPlatform; /** @internal This is not public API for PIE, so should not be depended upon unless you accept the risk of BC breaks */ interface Uninstall { public function __invoke(TargetPlatform $targetPlatform, Package $package): BinaryFile; }
Save File
Cancel