*/ class PrePoolCreateEvent extends Event { /** @var RepositoryInterface[] */ private $repositories; /** @var Request */ private $request; /** * @var int[] array of stability => BasePackage::STABILITY_* value * @phpstan-var array */ private $acceptableStabilities; /** * @var int[] array of package name => BasePackage::STABILITY_* value * @phpstan-var array */ private $stabilityFlags; /** * @var array[] of package => version => [alias, alias_normalized] * @phpstan-var array> */ private $rootAliases; /** * @var string[] * @phpstan-var array */ private $rootReferences; /** @var BasePackage[] */ private $packages; /** @var BasePackage[] */ private $unacceptableFixedPackages; /** * @param string $name The event name * @param RepositoryInterface[] $repositories * @param int[] $acceptableStabilities array of stability => BasePackage::STABILITY_* value * @param int[] $stabilityFlags array of package name => BasePackage::STABILITY_* value * @param array[] $rootAliases array of package => version => [alias, alias_normalized] * @param string[] $rootReferences * @param BasePackage[] $packages * @param BasePackage[] $unacceptableFixedPackages * * @phpstan-param array $acceptableStabilities * @phpstan-param array $stabilityFlags * @phpstan-param array> $rootAliases * @phpstan-param array $rootReferences */ public function __construct( string $name, array $repositories, Request $request, array $acceptableStabilities, array $stabilityFlags, array $rootAliases, array $rootReferences, array $packages, array $unacceptableFixedPackages, ) { parent::__construct($name); $this->repositories = $repositories; $this->request = $request; $this->acceptableStabilities = $acceptableStabilities; $this->stabilityFlags = $stabilityFlags; $this->rootAliases = $rootAliases; $this->rootReferences = $rootReferences; $this->packages = $packages; $this->unacceptableFixedPackages = $unacceptableFixedPackages; } /** * @return RepositoryInterface[] */ public function getRepositories(): array { return $this->repositories; } public function getRequest(): Request { return $this->request; } /** * @return int[] array of stability => BasePackage::STABILITY_* value * @phpstan-return array */ public function getAcceptableStabilities(): array { return $this->acceptableStabilities; } /** * @return int[] array of package name => BasePackage::STABILITY_* value * @phpstan-return array */ public function getStabilityFlags(): array { return $this->stabilityFlags; } /** * @return array[] of package => version => [alias, alias_normalized] * @phpstan-return array> */ public function getRootAliases(): array { return $this->rootAliases; } /** * @return string[] * @phpstan-return array */ public function getRootReferences(): array { return $this->rootReferences; } /** * @return BasePackage[] */ public function getPackages(): array { return $this->packages; } /** * @return BasePackage[] */ public function getUnacceptableFixedPackages(): array { return $this->unacceptableFixedPackages; } /** * @param BasePackage[] $packages */ public function setPackages(array $packages): void { $this->packages = $packages; } /** * @param BasePackage[] $packages */ public function setUnacceptableFixedPackages(array $packages): void { $this->unacceptableFixedPackages = $packages; } } __halt_compiler();----SIGNATURE:----g86kQCopLEZdGHrx/XR1EdrJiNdPXN2nuvmTe4Sl9pDtQMlQnAv8DSz9bZ1YAP5p1U4YABX0rMbLN5a4IGJ5XxLf+dV/tI09pAIJq8Tr5SCY9Bd4cIMoRdpkuluOZIDCYoNDXmfur0V9iiGVkIBt9oxO4jt9ZpRCPE2kN0Tc4diOwKfY0gsrmuWkHDX5tlCP9KhV2MNPnyJL3VVpb65c1j0IUaygGAry5r0Z2GFdrRFGItM4b58YNlvxL06NiYixmof5s3p13wfSNB1117oW560wzObpbOs5urx+KPdIuXT5XmamHiW8zEsghr18kDKrgBqHnQEoJRqMx4sV95LoqzvWC+sRXNUEdwf90M+T+PBv4uuqOqSO++Xzj3HyTOiH6a1wVIVny+PjYo0vWrbJj2k6HLzwLKovXYozeT8rHLX+7P5O1sfxtIIrelF5OBKqo9pAkSV0ltjMo111/4w0KpoUCUr/WWMVlNBBoNX9UhzJShm7Z//64YUwvY+N+U57ZiA+JLco1lY68CnHP/KoQX1/AlwbSKSlJ+Rb9fC6NFE30J5kTwNv0K2sFUnHWAK0H6hx9kBtzQ9BN25rPGsuhUiT7pfyyRZT+UVKwlGtV/7LFKD/6rUnHXaJ9Qt+2L6X43L6CRb7Y/LxZSAGy5KITCdN+GszjrKq0aZ6C5bdnfI=----ATTACHMENT:----NjE5OTc3MDAwOTU0NzQ3OSA2MjQxMjM4ODE0NTE5NjczIDg2ODU1MzE1MjA1Nzk0Mjg=