/home/techb158/ileadtechnology.com/vendor/composer/composer/src/Composer/Installer
NameSizeModeActions
BinaryInstaller.php70140644editdlrm
BinaryPresenceInterface.php7310644editdlrm
InstallationManager.php107670644editdlrm
InstallerEvent.php32200644editdlrm
InstallerEvents.php10390644editdlrm
InstallerInterface.php25040644editdlrm
LibraryInstaller.php75900644editdlrm
MetapackageInstaller.php28070644editdlrm
NoopInstaller.php21580644editdlrm
PackageEvent.php18760644editdlrm
PackageEvents.php20200644editdlrm
PearBinaryInstaller.php49480644editdlrm
PearInstaller.php28700644editdlrm
PluginInstaller.php25840644editdlrm
ProjectInstaller.php26070644editdlrm
SuggestedPackagesReporter.php40310644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/composer/composer/src/Composer/Installer/PackageEvent.php (1876B)
* Jordi Boggiano * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Composer\Installer; use Composer\Composer; use Composer\IO\IOInterface; use Composer\DependencyResolver\Operation\OperationInterface; use Composer\DependencyResolver\PolicyInterface; use Composer\DependencyResolver\Pool; use Composer\DependencyResolver\Request; use Composer\Repository\CompositeRepository; /** * The Package Event. * * @author Jordi Boggiano */ class PackageEvent extends InstallerEvent { /** * @var OperationInterface The package instance */ private $operation; /** * Constructor. * * @param string $eventName * @param Composer $composer * @param IOInterface $io * @param bool $devMode * @param PolicyInterface $policy * @param Pool $pool * @param CompositeRepository $installedRepo * @param Request $request * @param OperationInterface[] $operations * @param OperationInterface $operation */ public function __construct($eventName, Composer $composer, IOInterface $io, $devMode, PolicyInterface $policy, Pool $pool, CompositeRepository $installedRepo, Request $request, array $operations, OperationInterface $operation) { parent::__construct($eventName, $composer, $io, $devMode, $policy, $pool, $installedRepo, $request, $operations); $this->operation = $operation; } /** * Returns the package instance. * * @return OperationInterface */ public function getOperation() { return $this->operation; } }