mvc: small style update

This commit is contained in:
Franco Fichtner 2020-04-06 13:39:10 +02:00
parent df73492c72
commit f57bc3d93b

View File

@ -129,7 +129,7 @@ class PortField extends BaseListField
*/
public function setEnableWellKnown($value)
{
$this->enableWellKnown = (strtoupper(trim($value)) == "Y");
$this->enableWellKnown = strtoupper(trim($value)) == 'Y';
}
/**
@ -138,7 +138,7 @@ class PortField extends BaseListField
*/
public function setEnableRanges($value)
{
$this->enableRanges = (strtoupper(trim($value)) == "Y");
$this->enableRanges = strtoupper(trim($value)) == 'Y';
}
/**