How to Hide the "Blocks Scanner" Admin Menu

function plt_hide_blocks_scanner_menus() {
	//Hide the "Tools → Blocks Scanner" menu.
	remove_submenu_page('tools.php', 'blocks_scanner');
}

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

Where do I put this code?