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

add tiny-OOP style backend RPC

This commit is contained in:
Andrew Dolgov
2011-12-12 23:32:29 +04:00
parent f30ef1fa1b
commit d51124689d
5 changed files with 832 additions and 922 deletions

15
classes/handler.php Normal file
View File

@@ -0,0 +1,15 @@
<?php
class Handler {
protected $link;
protected $args;
function __construct($link, $args) {
$this->link = $link;
$this->args = $args;
}
function before() {
return true;
}
}
?>