Remove useless null check, follow up to #9345
parent
3772696ad6
commit
289972a177
|
@ -751,7 +751,7 @@ EOT
|
||||||
throw new \InvalidArgumentException(sprintf(
|
throw new \InvalidArgumentException(sprintf(
|
||||||
'Could not find package %s in a version matching %s',
|
'Could not find package %s in a version matching %s',
|
||||||
$name,
|
$name,
|
||||||
$requiredVersion ?: '*'
|
$requiredVersion
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
// Check whether the PHP version was the problem for all versions
|
// Check whether the PHP version was the problem for all versions
|
||||||
|
|
Loading…
Reference in New Issue