File "Upgrade186.php"
Full path: C:/Inetpub/vhosts/drshti.com/httpdocs/wp-content/plugins/wpforms-lite/src/Migrations/Upgrade186.php
File
size: 395 B (395 B bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
<?php
namespace WPForms\Migrations;
use WPForms\Tasks\Actions\DomainAutoRegistrationTask;
/**
* Class upgrade for 1.8.6 release.
*
* @since 1.8.6
*
* @noinspection PhpUnused
*/
class Upgrade186 extends UpgradeBase {
/**
* Run upgrade.
*
* @since 1.8.6
*
* @return bool|null
*/
public function run() {
return $this->run_async( DomainAutoRegistrationTask::class );
}
}