Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Clean up event dispatching code and make package events extend instal…
…ler events
- Loading branch information
Showing
13 changed files
with
259 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,69 @@ | ||
| <?php | ||
|
|
||
| /* | ||
| * This file is part of Composer. | ||
| * | ||
| * (c) Nils Adermann <naderman@naderman.de> | ||
| * Jordi Boggiano <j.boggiano@seld.be> | ||
| * | ||
| * For the full copyright and license information, please view the LICENSE | ||
| * file that was distributed with this source code. | ||
| */ | ||
|
|
||
| namespace Composer\Installer; | ||
|
|
||
| use Composer\Composer; | ||
| use Composer\IO\IOInterface; | ||
| use Composer\DependencyResolver\Operation\OperationInterface; | ||
|
|
||
| /** | ||
| * The Package Event. | ||
| * | ||
| * @author Jordi Boggiano <j.boggiano@seld.be> | ||
| */ | ||
| class PackageEvent extends InstallerEvent | ||
| { | ||
| /** | ||
| * @var OperationInterface The package instance | ||
| */ | ||
| private $operation; | ||
|
|
||
| /** | ||
| * Constructor. | ||
| * | ||
| * @param string $eventName | ||
| * @param Composer $composer | ||
| * @param IOInterface $io | ||
| * @param bool $devMode | ||
| * @param PolicyInterface $policy | ||
| * @param Pool $pool | ||
| * @param CompositeRepository $installedRepo | ||
| * @param Request $request | ||
| * @param OperationInterface[] $operations | ||
| * @param 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); | ||
|
|
||
| $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; | ||
| } | ||
|
|
||
| /** | ||
| * Returns the package instance. | ||
| * | ||
| * @return OperationInterface | ||
| */ | ||
| public function getOperation() | ||
| { | ||
| return $this->operation; | ||
| } | ||
| } |
Oops, something went wrong.