17e5dba979
What could properly go wrong? ¯\_(ツ)_/¯
16 lines
210 B
PHP
16 lines
210 B
PHP
<?php
|
|
|
|
###
|
|
# @name Access
|
|
# @copyright 2015 by Tobias Reich
|
|
###
|
|
|
|
if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
|
|
|
|
abstract class Access {
|
|
|
|
abstract protected function check($fn);
|
|
|
|
}
|
|
|
|
?>
|