How to Hide the "Plugin Detective" Admin Menu

function plt_hide_plugin_detective_menus() {
	//Hide the "Tools → Plugin Detective" menu.
	remove_submenu_page('tools.php', 'plugin-detective');
}

add_action('admin_menu', 'plt_hide_plugin_detective_menus', 11);

Where do I put this code?