summaryrefslogtreecommitdiff
path: root/classes/handler.php
diff options
context:
space:
mode:
Diffstat (limited to 'classes/handler.php')
-rw-r--r--classes/handler.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/classes/handler.php b/classes/handler.php
index 16c209607..483b573e3 100644
--- a/classes/handler.php
+++ b/classes/handler.php
@@ -1,10 +1,12 @@
<?php
class Handler implements IHandler {
protected $dbh;
+ protected $pdo;
protected $args;
function __construct($args) {
$this->dbh = Db::get();
+ $this->pdo = Db::pdo();
$this->args = $args;
}