19 lines
230 B
PHP
19 lines
230 B
PHP
<?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;
|
|
}
|
|
}
|
|
?>
|