| 1 |
<?php |
| 2 |
|
| 3 |
namespace FluentForm\App\Databases\Migrations; |
| 4 |
|
| 5 |
defined('ABSPATH') or die; |
| 6 |
|
| 7 |
/** |
| 8 |
* @deprecated since 6.2.0. Use FluentForm\Database\Migrations\Submissions instead. |
| 9 |
* @todo Remove in 7.0 |
| 10 |
*/ |
| 11 |
class FormSubmissions extends \FluentForm\Database\Migrations\Submissions |
| 12 |
{ |
| 13 |
public function __construct() |
| 14 |
{ |
| 15 |
_deprecated_function(__CLASS__, '6.2.0', 'FluentForm\Database\Migrations\Submissions'); |
| 16 |
} |
| 17 |
} |
| 18 |
|