Access.php 205 B

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