aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2021-02-21 14:23:44 -0500
committerThedro Neely <thedroneely@gmail.com>2021-02-21 14:23:44 -0500
commit4d940b29cc62626106d0c29c16b36a05223ce4b8 (patch)
treea658e394c1ffb7af6d2d2151074281b8cb59d8b4
parent8d202f7ebd068e52a4f96feac8d8cc116c17ad0e (diff)
downloadthedroneely.com-4d940b29cc62626106d0c29c16b36a05223ce4b8.tar.gz
thedroneely.com-4d940b29cc62626106d0c29c16b36a05223ce4b8.tar.bz2
thedroneely.com-4d940b29cc62626106d0c29c16b36a05223ce4b8.zip
bootstrap/database/QueryBuilder: Correct statement typo
-rw-r--r--bootstrap/database/QueryBuilder.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap/database/QueryBuilder.php b/bootstrap/database/QueryBuilder.php
index a814ed3..4b17766 100644
--- a/bootstrap/database/QueryBuilder.php
+++ b/bootstrap/database/QueryBuilder.php
@@ -25,7 +25,7 @@ class QueryBuilder
':' . implode(', :', array_keys($data))
);
- $statment = $this->pdo->prepare($sql);
- $statment->execute($data);
+ $statement = $this->pdo->prepare($sql);
+ $statement->execute($data);
}
}