*/ 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:----WkjvqUDC8HDJa8MTjlUZrPEAY6RFk1lyZyeZ3gkNGTtgoaFEBP0g4OkETx52XN8f1TUj++EdPzh63HQlGIdwv6TKq3Osu5QTndHNOETSUPUMnHyYqXMVH/DEuSQiOI0bjtzv2akvNVd7vQyjOGlpmR+s99FreWHuBLzP0zafNd5438wNyDYdCuHZtEkzdmyKZML9sLs46L8322WkdVwgkbjuT4zWnXtW0dAPkuuIGkg4gFG0EYUKMLUkp/SU3nDyZx+5liduFesSQm3BhvqO+BMW+mHU1j3h7KWhwp9Gzpx1OmFIUdNcAGy5QYyweOM3WJqLRTByJNWw0ahTFb+2awBRmwc181vkxmijZ4kFYfmV9IU1Q6lLkwzOrTlIARF8yQC4e+94pFn8kSNPwQNn/asXZIQZhhl3MEYtnlrjrmxQrH7U3EU/d7KgDL/dwnRt4PKDbt42Ycejk75coHQyA7IEhMofoFSiOnRmHQ+vQ+prvw+1co6fbb+Esbj8F+/dl4qzmPZURC6oNrYmu7iQUML5Wb5oWJnICxG9WUlyEo0w5sXQZaK/d+Q9VOyYGcVye3LM9AjV2dGMcs71GAkKJOGrmK79QlKFQVc/h8oW5VOF4BmhGe+zT8YGapbf+ntMjAhjjmlG3TmZudofdfGvzHrf+nfqFK5Qjxt+CcXrHfY=----ATTACHMENT:----Nzg1MDg4Mjc5OTEwMjI5MCA1ODczMzg1MTE0MTg4MTYxIDQ2NTcyOTYxMjE3MzY1NTU=