1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-28 06:17:10 +00:00

remove $link

This commit is contained in:
Andrew Dolgov
2013-04-17 16:23:15 +04:00
parent aca75cb5cb
commit 6322ac79a0
80 changed files with 1624 additions and 1727 deletions

View 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;
}