We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ab014c3 + 632f2f3 commit e28a824Copy full SHA for e28a824
1 file changed
src/Adapter/Driver/Pdo/Statement.php
@@ -217,6 +217,7 @@ protected function bindParametersFromContainer(): void
217
} else {
218
$type = match (true) {
219
is_int($value) => PDO::PARAM_INT,
220
+ $value === false, $value === true => PDO::PARAM_BOOL,
221
$value === null => PDO::PARAM_NULL,
222
default => PDO::PARAM_STR,
223
};
0 commit comments