*/ 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:----wGHF5bBNkbXQEdo/2ZW2521SU7o6KUOkHg8js/cnKuLNJhhmGTtvcnOi34WvqK4oNnp/C9rwbjii4Pzc2/DpASOsYXFXDt+K8Uk0Y3yl4wiDIJIPU7iGg1Cw1VYRs4KkFp9fZB4iL4CInZZhTBBIFaTvHIOBxXYTc4UOaU6DvhbQNhvKA9Oss/gjfUqUgdsAaF1wzKhyocOZo9vAQpSvBQThvFnkb3MgIL61JDp0+kxyk2VegN/ofw9BQcUZlrRvUGK6+iyvNuCUR4w4TgJDuVcUzk05YoHiKRd1ypuF7Cqr3ervrvywHQYwD7gZN0oZooDtYaq0b0QCB3TdS1IaROtP6LAQxV6dj2484U7y5KydLOh037w2aXMnHKA7QTKDrkKc5H5Q+xLBONy+tFl0X3Aj9msBHmaGrV8c1EP5+91uo4LRYLxeVnGy9DbbHzaRk7hh/rZmfn0/mBEpsHse6Mzh8BSpdN3kn+5oFtFnrXs46WZFPsXtFIJnLQzVlN2b29/yoL5BzTvcFtTgs/CO3nFcTE48KDXFUJBUDw1pPBXEhEsWbKdobS3RLCRFpThbFHBKMMncJFi0bLd+kFUDdvVaPk2/m4E4u1lN9iqBYUvS+L8E0ixOcq64RaUV0FOf4sY482P8GUzPNnf/swkZmvJXXqq8cQHKj6AyDPwA/Hg=----ATTACHMENT:----MzE1ODY0NTI0NDY2Nzc1NiA5NzA3NjIwMjI2MTgxMzI2IDIzMjg3NDk2MTM2ODc1MTg=