CS fixes
parent
95bc5c4898
commit
6e90c0be51
|
@ -146,4 +146,3 @@ EOT
|
|||
return $factory->createDownloadManager($io);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -95,4 +95,3 @@ class ProjectInstaller implements InstallerInterface
|
|||
return $this->installPath;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -53,6 +53,7 @@ class MultiConstraint implements LinkConstraintInterface
|
|||
if ($this->prettyString) {
|
||||
return $this->prettyString;
|
||||
}
|
||||
|
||||
return $this->__toString();
|
||||
}
|
||||
|
||||
|
|
|
@ -43,6 +43,7 @@ abstract class SpecificConstraint implements LinkConstraintInterface
|
|||
if ($this->prettyString) {
|
||||
return $this->prettyString;
|
||||
}
|
||||
|
||||
return $this->__toString();
|
||||
}
|
||||
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -192,6 +192,7 @@ class VersionParser
|
|||
}
|
||||
|
||||
$constraint->setPrettyString($prettyConstraint);
|
||||
|
||||
return $constraint;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue