lychee/php/Access/Access.php

17 lines
239 B
PHP
Raw Normal View History

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