Welcome Guest, Not a member yet? Register   Sign In
MY_EXECPTION different in development and poduction
#2

Check the ENVIRONMENT constant and call the parent method or do your custom action:

PHP Code:
if (ENVIRONMENT == ‘production’) {
    // do custom action
} else {
    // call parent method from original class
    parent::show_error($heading$message$template$status_code);

CodeIgniter 4 tutorials (EN/FR) - https://includebeer.com
/*** NO support in private message - Use the forum! ***/
Reply


Messages In This Thread
RE: MY_EXECPTION different in development and poduction - by includebeer - 10-09-2021, 07:04 AM



Theme © iAndrew 2016 - Forum software by © MyBB