summaryrefslogtreecommitdiff
path: root/classes/handler.php
blob: d8e2a3025cfb47d329577391f6791868bbe47b28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
class Handler implements IHandler {
	protected $dbh;
	protected $args;

	function __construct($dbh, $args) {
		$this->dbh = $dbh;
		$this->args = $args;
	}

	function csrf_ignore($method) {
		return true;
	}

	function before($method) {
		return true;
	}

	function after() {
		return true;
	}

}
?>