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); return $factory->createDownloadManager($io);
} }
} }

View File

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

View File

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

View File

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

View File

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