15 lines
203 B
PHP
15 lines
203 B
PHP
<?php
|
|
|
|
namespace Lychee\Access;
|
|
|
|
abstract class Access {
|
|
|
|
final private static function fnNotFound() {
|
|
|
|
exit('Error: Function not found! Please check the spelling of the called function.');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|