Skip to content

Commit

Permalink
Merge pull request composer#4192 from localheinz/fix/import
Browse files Browse the repository at this point in the history
Fix: Add missing imports
  • Loading branch information
Seldaek committed Jun 30, 2015
2 parents 6a64041 + 12ffe2b commit 79f9158
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
namespace Composer\DependencyResolver\Operation;

use Composer\Package\AliasPackage;
use Composer\Package\PackageInterface;

/**
* Solver install operation.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
namespace Composer\DependencyResolver\Operation;

use Composer\Package\AliasPackage;
use Composer\Package\PackageInterface;

/**
* Solver install operation.
Expand Down
1 change: 1 addition & 0 deletions src/Composer/EventDispatcher/EventDispatcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
use Composer\DependencyResolver\Operation\OperationInterface;
use Composer\Repository\CompositeRepository;
use Composer\Script;
use Composer\Script\CommandEvent;
use Composer\Script\PackageEvent;
use Composer\Util\ProcessExecutor;

Expand Down
1 change: 1 addition & 0 deletions src/Composer/Installer/InstallerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

use Composer\Package\PackageInterface;
use Composer\Repository\InstalledRepositoryInterface;
use InvalidArgumentException;

/**
* Interface for the package installation manager.
Expand Down
1 change: 1 addition & 0 deletions src/Composer/Repository/ArtifactRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
use Composer\IO\IOInterface;
use Composer\Json\JsonFile;
use Composer\Package\Loader\ArrayLoader;
use Composer\Package\Loader\LoaderInterface;

/**
* @author Serge Smertin <serg.smertin@gmail.com>
Expand Down
1 change: 1 addition & 0 deletions src/Composer/Repository/RepositoryManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
use Composer\IO\IOInterface;
use Composer\Config;
use Composer\EventDispatcher\EventDispatcher;
use Composer\Package\PackageInterface;

/**
* Repositories manager.
Expand Down

0 comments on commit 79f9158

Please sign in to comment.