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',
];
}