]> git.wh0rd.org - tt-rss.git/blobdiff - classes/handler.php
Merge branch 'master' of jsoares/tt-rss into master
[tt-rss.git] / classes / handler.php
index 16c2096076c5aaeb4c860cf43af1b8b82fb54aa3..5b11094929711f3466107efd70b56cf57b9cf38f 100644 (file)
@@ -1,10 +1,10 @@
 <?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;
        }