]> git.wh0rd.org - tt-rss.git/blobdiff - classes/handler.php
minor css fixes (mostly for zoom mode)
[tt-rss.git] / classes / handler.php
index 9d6c99e0da27162f8166bf2fb072599746ee29a7..5b11094929711f3466107efd70b56cf57b9cf38f 100644 (file)
@@ -1,10 +1,10 @@
 <?php
-class Handler {
-       protected $link;
+class Handler implements IHandler {
+       protected $pdo;
        protected $args;
 
-       function __construct($link, $args) {
-               $this->link = $link;
+       function __construct($args) {
+               $this->pdo = Db::pdo();
                $this->args = $args;
        }
 
@@ -19,5 +19,5 @@ class Handler {
        function after() {
                return true;
        }
-}
-?>
+
+}
\ No newline at end of file