lychee/php/Access/Access.php
2016-02-07 14:32:46 +01:00

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.');
}
}
?>