Skip to content

Commit

Permalink
Fix phpdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
francoispluchino committed Oct 1, 2014
1 parent f2f74c0 commit d3eb0c9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions Package/Loader/LazyAssetPackageLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

use Composer\EventDispatcher\EventDispatcher;
use Composer\IO\IOInterface;
use Composer\Package\CompletePackageInterface;
use Composer\Package\Loader\LoaderInterface;
use Composer\Package\PackageInterface;
use Composer\Repository\Vcs\VcsDriverInterface;
Expand Down Expand Up @@ -193,7 +192,7 @@ protected function validateConfig()
*
* @param LazyPackageInterface $package
*
* @return false|CompletePackageInterface
* @return false|PackageInterface
*/
protected function loadRealPackage(LazyPackageInterface $package)
{
Expand Down
4 changes: 2 additions & 2 deletions Package/Loader/LazyLoaderInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

namespace Fxp\Composer\AssetPlugin\Package\Loader;

use Composer\Package\CompletePackageInterface;
use Composer\Package\PackageInterface;
use Fxp\Composer\AssetPlugin\Package\LazyPackageInterface;

/**
Expand All @@ -26,7 +26,7 @@ interface LazyLoaderInterface
*
* @param LazyPackageInterface $package
*
* @return CompletePackageInterface|false
* @return PackageInterface|false
*/
public function load(LazyPackageInterface $package);
}

0 comments on commit d3eb0c9

Please sign in to comment.