16 lines
191 B
PHP
16 lines
191 B
PHP
|
<?php
|
||
|
class Handler {
|
||
|
protected $link;
|
||
|
protected $args;
|
||
|
|
||
|
function __construct($link, $args) {
|
||
|
$this->link = $link;
|
||
|
$this->args = $args;
|
||
|
}
|
||
|
|
||
|
function before() {
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
?>
|