Jordi Boggiano 12 years ago
parent
commit
e887f6cea9

+ 0 - 1
src/Composer/Installer.php

@@ -32,7 +32,6 @@ use Composer\Package\PackageInterface;
 use Composer\Package\RootPackageInterface;
 use Composer\Repository\CompositeRepository;
 use Composer\Repository\InstalledArrayRepository;
-use Composer\Repository\InstalledFilesystemRepository;
 use Composer\Repository\PlatformRepository;
 use Composer\Repository\RepositoryInterface;
 use Composer\Repository\RepositoryManager;

+ 0 - 1
src/Composer/Repository/ComposerRepository.php

@@ -22,7 +22,6 @@ use Composer\Cache;
 use Composer\Config;
 use Composer\IO\IOInterface;
 use Composer\Util\RemoteFilesystem;
-use Composer\Downloader\TransportException;
 
 /**
  * @author Jordi Boggiano <j.boggiano@seld.be>

+ 2 - 2
src/Composer/Script/EventDispatcher.php

@@ -119,7 +119,7 @@ class EventDispatcher
     /**
      * @param string $className
      * @param string $methodName
-     * @param Event $event          Event invoking the PHP callable
+     * @param Event  $event      Event invoking the PHP callable
      */
     protected function executeEventPhpScript($className, $methodName, Event $event)
     {
@@ -156,7 +156,7 @@ class EventDispatcher
     /**
      * Checks if string given references a class path and method
      *
-     * @param string $callable
+     * @param  string  $callable
      * @return boolean
      */
     protected function isPhpScript($callable)

+ 5 - 5
src/Composer/Util/GitHub.php

@@ -46,8 +46,8 @@ class GitHub
     /**
      * Attempts to authorize a GitHub domain via OAuth
      *
-     * @param string $originUrl The host this GitHub instance is located at
-     * @return bool  true on success
+     * @param  string $originUrl The host this GitHub instance is located at
+     * @return bool   true on success
      */
     public function authorizeOAuth($originUrl)
     {
@@ -68,9 +68,9 @@ class GitHub
     /**
      * Authorizes a GitHub domain interactively via OAuth
      *
-     * @param string $originUrl The host this GitHub instance is located at
-     * @param string $message   The reason this authorization is required
-     * @return bool  true on success
+     * @param  string $originUrl The host this GitHub instance is located at
+     * @param  string $message   The reason this authorization is required
+     * @return bool   true on success
      */
     public function authorizeOAuthInteractively($originUrl, $message = null)
     {