db_version = $data['db_version']; $updater_functions = new Updater_Functions(); call_user_func( [ $updater_functions, $data['callback_function'] ] ); return false; } /** * Complete * * Override if applicable, but ensure that the below actions are * performed, or, call parent::complete(). * * @since 1.1.0 */ protected function complete() { parent::complete(); sellkit_update_option( 'current_db_version', $this->db_version ); } }