mirror of
https://github.com/composer/composer
synced 2025-05-10 00:53:06 +00:00
Type annotations
This commit is contained in:
parent
626370d444
commit
c3c6969cf5
21 changed files with 166 additions and 35 deletions
|
@ -24,9 +24,21 @@ use Composer\DependencyResolver\Operation\MarkAliasUninstalledOperation;
|
|||
|
||||
class InstallationManagerMock extends InstallationManager
|
||||
{
|
||||
/**
|
||||
* @var PackageInterface[]
|
||||
*/
|
||||
private $installed = array();
|
||||
/**
|
||||
* @var PackageInterface[][]
|
||||
*/
|
||||
private $updated = array();
|
||||
/**
|
||||
* @var PackageInterface[]
|
||||
*/
|
||||
private $uninstalled = array();
|
||||
/**
|
||||
* @var string[]
|
||||
*/
|
||||
private $trace = array();
|
||||
|
||||
public function __construct()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue