function CompleteAliasPackage::__construct
All descendants' constructors should call this parent constructor
Parameters
CompletePackage $aliasOf The package this package is an alias of:
string $version The version the alias must report:
string $prettyVersion The alias's non-normalized version:
Overrides AliasPackage::__construct
2 calls to CompleteAliasPackage::__construct()
- RootAliasPackage::__construct in vendor/
composer/ composer/ src/ Composer/ Package/ RootAliasPackage.php - All descendants' constructors should call this parent constructor
- RootAliasPackage::__construct in vendor/
composer/ composer/ src/ Composer/ Package/ RootAliasPackage.php - All descendants' constructors should call this parent constructor
1 method overrides CompleteAliasPackage::__construct()
- RootAliasPackage::__construct in vendor/
composer/ composer/ src/ Composer/ Package/ RootAliasPackage.php - All descendants' constructors should call this parent constructor
File
-
vendor/
composer/ composer/ src/ Composer/ Package/ CompleteAliasPackage.php, line 30
Class
- CompleteAliasPackage
- @author Jordi Boggiano <j.boggiano@seld.be>
Namespace
Composer\PackageCode
public function __construct(CompletePackage $aliasOf, string $version, string $prettyVersion) {
parent::__construct($aliasOf, $version, $prettyVersion);
}