HEX
Server: LiteSpeed
System: Linux server315.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: globfdxw (6114)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //home/globfdxw/www/wp-content/plugins/wpforms-paypal-standard/src/Migrations/Migrations.php
<?php

namespace WPFormsPaypalStandard\Migrations;

use WPForms\Migrations\Base;

/**
 * Class Migrations handles addon upgrade routines.
 *
 * @since 1.5.0
 */
class Migrations extends Base {

	/**
	 * WP option name to store the migration versions.
	 *
	 * @since 1.5.0
	 */
	const MIGRATED_OPTION_NAME = 'wpforms_paypal_standard_versions';

	/**
	 * Current plugin version.
	 *
	 * @since 1.5.0
	 */
	const CURRENT_VERSION = WPFORMS_PAYPAL_STANDARD_VERSION;

	/**
	 * Name of plugin used in log messages.
	 *
	 * @since 1.5.0
	 */
	const PLUGIN_NAME = 'WPForms PayPal Standard';

	/**
	 * Upgrade classes.
	 *
	 * @since 1.5.0
	 */
	const UPGRADE_CLASSES = [
		'Upgrade150',
	];
}