Skip to content

Commit 2927ba1

Browse files
committed
Fix
1 parent 8d92e8e commit 2927ba1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dbpp/attrs/Query.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ protected function bindValues(PDOStatement $statement, array $args): bool {
3030
$type = PDO::PARAM_INT;
3131
}
3232

33-
if($statement->bindValue($key, $value, $type))
33+
if(!$statement->bindValue($key, $value, $type))
3434
return false;
3535
}
3636

0 commit comments

Comments
 (0)