summaryrefslogtreecommitdiff
path: root/classes/handler.php
blob: 53b52ea032c113fc6986e495cb206896d5746e79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
class Handler {
	protected $link;
	protected $args;

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

	function before() {
		return true;
	}

	function after() {
		return true;
	}
}
?>