Access.php 239 B

1234567891011121314151617
  1. <?php
  2. namespace Lychee\Access;
  3. use Lychee\Modules\Response;
  4. abstract class Access {
  5. final protected static function fnNotFound() {
  6. Response::error('Function not found! Please check the spelling of the called function.');
  7. }
  8. }
  9. ?>