File: /home/globfdxw/www/wp-content/plugins/wpforms-paypal-standard/src/Migrations/Upgrade150.php
<?php
namespace WPFormsPaypalStandard\Migrations;
use WPForms\Migrations\UpgradeBase;
use WPForms\Tasks\Actions\Migration175Task;
/**
* Class PayPal Standard addon v1.5.0 upgrade.
*
* @since 1.5.0
*
* @noinspection PhpUnused
*/
class Upgrade150 extends UpgradeBase {
/**
* Run upgrade.
*
* @since 1.5.0
*
* @return bool|null Upgrade result:
* true - the upgrade completed successfully,
* false - in the case of failure,
* null - upgrade started but not yet finished (background task).
*/
public function run() {
return $this->run_async( Migration175Task::class );
}
}