class-migrate.php in WowOptin: Next-Gen Popup Maker – Create Stunning Popups and Optins for Lead Generation trunk, at includes/class-migrate.php
| 1 | <?php // phpcs:ignore |
| 2 | |
| 3 | namespace OPTN\Includes; |
| 4 | |
| 5 | /** |
| 6 | * DB Class. |
| 7 | */ |
| 8 | class Migrate { |
| 9 | use \OPTN\Includes\Traits\Singleton; |
| 10 | |
| 11 | /** |
| 12 | * DB instance |
| 13 | * |
| 14 | * @var Db |
| 15 | */ |
| 16 | private $db; |
| 17 | |
| 18 | /** |
| 19 | * Constructor |
| 20 | */ |
| 21 | private function __construct() { |
| 22 | $this->db = Db::get_instance(); |
| 23 | } |
| 24 | } |
| 25 |