function InstallationManager::markForNotification
2 calls to InstallationManager::markForNotification()
- InstallationManager::install in vendor/
composer/ composer/ src/ Composer/ Installer/ InstallationManager.php - Executes install operation.
- InstallationManager::update in vendor/
composer/ composer/ src/ Composer/ Installer/ InstallationManager.php - Executes update operation.
File
-
vendor/
composer/ composer/ src/ Composer/ Installer/ InstallationManager.php, line 639
Class
- InstallationManager
- Package operation manager.
Namespace
Composer\InstallerCode
private function markForNotification(PackageInterface $package) : void {
if ($package->getNotificationUrl() !== null) {
$this->notifiablePackages[$package->getNotificationUrl()][$package->getName()] = $package;
}
}