lychee/php/access/Access.php

16 lines
210 B
PHP
Raw Normal View History

2014-04-28 09:23:18 +00:00
<?php
###
# @name Access
2015-02-01 21:08:37 +00:00
# @copyright 2015 by Tobias Reich
2014-04-28 09:23:18 +00:00
###
if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
abstract class Access {
2014-04-28 09:23:18 +00:00
abstract protected function check($fn);
2014-04-28 09:23:18 +00:00
}
?>