Handle the = comparison operator for versions the same as ==
parent
6118c00086
commit
03642a40b4
|
@ -32,6 +32,10 @@ class VersionConstraint extends SpecificConstraint
|
||||||
*/
|
*/
|
||||||
public function __construct($operator, $version)
|
public function __construct($operator, $version)
|
||||||
{
|
{
|
||||||
|
if ('=' === $operator) {
|
||||||
|
$operator = '==';
|
||||||
|
}
|
||||||
|
|
||||||
// TODO add third parameter releaseType and match that too
|
// TODO add third parameter releaseType and match that too
|
||||||
// TODO add fourth parameter devSnapshot and match that too
|
// TODO add fourth parameter devSnapshot and match that too
|
||||||
$this->operator = $operator;
|
$this->operator = $operator;
|
||||||
|
|
Loading…
Reference in New Issue