summaryrefslogtreecommitdiff
path: root/classes/handler.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2017-12-03 14:49:18 +0300
committerAndrew Dolgov <[email protected]>2017-12-03 14:49:18 +0300
commitdf5d2a06657be3abb671c44295848afefc7f8fd4 (patch)
treeffa8e53ec186bb45b2d404225c0be645541e20d7 /classes/handler.php
parent62c37cd697187a593afca4d17db26cfd6ef36ece (diff)
pluginhost: do not connect via legacy DB api until requested
log all initiated legacy database connections
Diffstat (limited to 'classes/handler.php')
-rw-r--r--classes/handler.php2
1 files changed, 0 insertions, 2 deletions
diff --git a/classes/handler.php b/classes/handler.php
index 483b573e3..5b1109492 100644
--- a/classes/handler.php
+++ b/classes/handler.php
@@ -1,11 +1,9 @@
<?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;
}