1
0
Fork 0

Forward args

pull/3772/head
Jordi Boggiano 2015-02-23 16:37:50 +00:00
parent 074a748675
commit 09da587ee2
1 changed files with 1 additions and 9 deletions

View File

@ -49,16 +49,8 @@ class PackageEvent extends InstallerEvent
*/ */
public function __construct($eventName, Composer $composer, IOInterface $io, $devMode, PolicyInterface $policy, Pool $pool, CompositeRepository $installedRepo, Request $request, array $operations, OperationInterface $operation) public function __construct($eventName, Composer $composer, IOInterface $io, $devMode, PolicyInterface $policy, Pool $pool, CompositeRepository $installedRepo, Request $request, array $operations, OperationInterface $operation)
{ {
parent::__construct($eventName); parent::__construct($eventName, $composer, $io, $devMode, $policy, $pool, $installedRepo, $request, $operations);
$this->composer = $composer;
$this->io = $io;
$this->devMode = $devMode;
$this->policy = $policy;
$this->pool = $pool;
$this->installedRepo = $installedRepo;
$this->request = $request;
$this->operations = $operations;
$this->operation = $operation; $this->operation = $operation;
} }