summaryrefslogtreecommitdiff
path: root/app/Statement.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Statement.php')
-rw-r--r--app/Statement.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Statement.php b/app/Statement.php
index fe44d5eedf..3424774464 100644
--- a/app/Statement.php
+++ b/app/Statement.php
@@ -71,7 +71,7 @@ class Statement
$this->pdo_statement->bindValue($key, $bind_variable, PDO::PARAM_NULL);
break;
case 'boolean':
- $this->pdo_statement->bindValue($key, (int)$bind_variable, PDO::PARAM_INT);
+ $this->pdo_statement->bindValue($key, (int) $bind_variable, PDO::PARAM_INT);
break;
case 'integer':
$this->pdo_statement->bindValue($key, $bind_variable, PDO::PARAM_INT);