| 1234567891011121314151617 | 
							- <?php
 
- namespace Lychee\Access;
 
- use Lychee\Modules\Response;
 
- abstract class Access {
 
- 	final protected static function fnNotFound() {
 
- 		Response::error('Function not found! Please check the spelling of the called function.');
 
- 	}
 
- }
 
- ?>
 
 
  |