17 lines
239 B
PHP
17 lines
239 B
PHP
<?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.');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|