How to prevent WordPress update notification from being displayed in plugin admin page?

Tried add those to main php file of plugin, did not help:

I would also prevent any other notification.


function tiketwp_handle_php_errors()
{
    // Turn off the display of PHP errors
    ini_set('display_errors', 0);

    // Log PHP errors to a file
    ini_set('log_errors', 1);
    ini_set('error_log', WP_CONTENT_DIR . '/php_errors.log');

    // Set the error reporting level
    error_reporting(E_ALL);
}

function disable_plugin_update_notification() {
    remove_action('admin_notices', 'update_nag', 3);
}

add_action('init', 'TiketWP\twppwr\tiketwp_handle_php_errors');
add_action('admin_menu', 'disable_plugin_update_notification');

enter image description here