diff --git a/lib/BridgeAbstract.php b/lib/BridgeAbstract.php index b814097a..f08d201f 100644 --- a/lib/BridgeAbstract.php +++ b/lib/BridgeAbstract.php @@ -240,7 +240,7 @@ abstract class BridgeAbstract if (isset($input[$name])) { $value = $input[$name]; } else { - if ($properties['type'] ?? null === 'checkbox') { + if (($properties['type'] ?? null) === 'checkbox') { $value = false; } elseif (isset($properties['defaultValue'])) { $value = $properties['defaultValue'];