1
0
Fork 0
pull/824/head
Jordi Boggiano 2012-06-22 20:08:26 +02:00
parent 95bc5c4898
commit 6e90c0be51
6 changed files with 6 additions and 5 deletions

View File

@ -146,4 +146,3 @@ EOT
return $factory->createDownloadManager($io);
}
}

View File

@ -95,4 +95,3 @@ class ProjectInstaller implements InstallerInterface
return $this->installPath;
}
}

View File

@ -53,6 +53,7 @@ class MultiConstraint implements LinkConstraintInterface
if ($this->prettyString) {
return $this->prettyString;
}
return $this->__toString();
}

View File

@ -43,6 +43,7 @@ abstract class SpecificConstraint implements LinkConstraintInterface
if ($this->prettyString) {
return $this->prettyString;
}
return $this->__toString();
}

View File

@ -35,10 +35,10 @@ class Locker
/**
* Initializes packages locker.
*
* @param JsonFile $lockFile lockfile loader
* @param RepositoryManager $repositoryManager repository manager instance
* @param JsonFile $lockFile lockfile loader
* @param RepositoryManager $repositoryManager repository manager instance
* @param InstallationManager $installationManager installation manager instance
* @param string $hash unique hash of the current composer configuration
* @param string $hash unique hash of the current composer configuration
*/
public function __construct(JsonFile $lockFile, RepositoryManager $repositoryManager, InstallationManager $installationManager, $hash)
{

View File

@ -192,6 +192,7 @@ class VersionParser
}
$constraint->setPrettyString($prettyConstraint);
return $constraint;
}