1
0
Fork 0

Merge pull request #3913 from hannesvdvreken/patch-2

Remove unused variable
pull/3871/merge
Jordi Boggiano 2015-04-14 23:10:39 +01:00
commit f41c1217f5
1 changed files with 0 additions and 1 deletions

View File

@ -416,7 +416,6 @@ class VersionParser
$lowVersion = $this->normalize($matches['from']);
$lowerBound = new VersionConstraint('>=', $lowVersion . $lowStabilitySuffix);
$highVersion = $matches[10];
if ((!empty($matches[11]) && !empty($matches[12])) || !empty($matches[14]) || !empty($matches[16])) {
$highVersion = $this->normalize($matches['to']);
$upperBound = new VersionConstraint('<=', $highVersion);