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