[DDC-1961] Fixed parameter type support in Parameter
This commit is contained in:
parent
00a5f18544
commit
79a04b295f
1 changed files with 2 additions and 2 deletions
|
@ -54,7 +54,7 @@ class Parameter
|
||||||
{
|
{
|
||||||
$this->name = trim($name, ':');
|
$this->name = trim($name, ':');
|
||||||
|
|
||||||
$this->setValue($value);
|
$this->setValue($value, $type);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -98,4 +98,4 @@ class Parameter
|
||||||
$this->value = $value;
|
$this->value = $value;
|
||||||
$this->type = $type ?: ParameterTypeInferer::inferType($value);
|
$this->type = $type ?: ParameterTypeInferer::inferType($value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue