*/ class Activecampaign_For_Woocommerce_Uninstall_Plugin_Command implements Executable { // phpcs:disable Generic.CodeAnalysis.UnusedFunctionParameter /** * Executes the command. * * Erases all plugin specific data from the database. * * @param mixed ...$args An array of arguments that may be passed in from the action/filter called. * * @since 1.0.0 */ public function execute( ...$args ) { delete_option( ACTIVECAMPAIGN_FOR_WOOCOMMERCE_DB_OPTION_NAME ); delete_option( ACTIVECAMPAIGN_FOR_WOOCOMMERCE_DB_STORAGE_NAME ); User_Meta_Service::delete_all_user_meta(); } // phpcs:enable }