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:
15
classes/handler.php
Normal file
15
classes/handler.php
Normal 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;
|
||||
}
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user