2014-04-28 09:23:18 +00:00
|
|
|
<?php
|
|
|
|
|
2016-01-26 14:31:53 +00:00
|
|
|
namespace Lychee\Access;
|
2014-04-28 09:23:18 +00:00
|
|
|
|
2016-02-07 13:32:46 +00:00
|
|
|
use Lychee\Modules\Response;
|
|
|
|
|
2016-01-30 20:33:31 +00:00
|
|
|
abstract class Access {
|
2014-04-28 09:23:18 +00:00
|
|
|
|
2016-01-30 23:56:42 +00:00
|
|
|
final protected static function fnNotFound() {
|
2016-01-30 20:33:31 +00:00
|
|
|
|
2016-02-07 13:32:46 +00:00
|
|
|
Response::error('Function not found! Please check the spelling of the called function.');
|
2016-01-30 20:33:31 +00:00
|
|
|
|
|
|
|
}
|
2014-04-28 09:23:18 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|