]> git.wh0rd.org - tt-rss.git/blobdiff - classes/handler.php
remove $link
[tt-rss.git] / classes / handler.php
index 68b16eac199f608149ade09ae3e4c51a0ebb5569..d8e2a3025cfb47d329577391f6791868bbe47b28 100644 (file)
@@ -1,10 +1,10 @@
 <?php
 class Handler implements IHandler {
-       protected $link;
+       protected $dbh;
        protected $args;
 
-       function __construct($link, $args) {
-               $this->link = $link;
+       function __construct($dbh, $args) {
+               $this->dbh = $dbh;
                $this->args = $args;
        }