Sha256: 1cf18dde52b1af946624947b025873d075090e7fc10ed6758f33ba5e9e6dc3ff
Contents?: true
Size: 731 Bytes
Versions: 42
Compression:
Stored size: 731 Bytes
Contents
<?php /* * This file is part of Composer. * * (c) Nils Adermann <naderman@naderman.de> * Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Composer\Installer; use Composer\Package\PackageInterface; /** * Interface for the package installation manager that handle binary installation. * * @author Jordi Boggiano <j.boggiano@seld.be> */ interface BinaryPresenceInterface { /** * Make sure binaries are installed for a given package. * * @param PackageInterface $package package instance */ public function ensureBinariesPresence(PackageInterface $package); }
Version data entries
42 entries across 42 versions & 1 rubygems