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

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

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