# sellkit/1.1.4/includes/core/update/updater-functions.php

SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster, version 1.1.4. 25 lines.

- Page: https://pluginprobe.com/plugins/sellkit/1.1.4/code/includes/core/update/updater-functions.php
- Raw: https://pluginprobe.com/plugins/sellkit/1.1.4/raw/includes/core/update/updater-functions.php
- Modified: 2022-04-14T05:16:22+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/sellkit/1.1.4/code/includes/core/update/updater-functions.php#L10-L20`.

```php
<?php

namespace Sellkit\Core\Update;

use Sellkit\Core\Install;

defined( 'ABSPATH' ) || die();

/**
 * Class Updater functions.
 *
 * @since 1.1.0
 */
class Updater_Functions {

	/**
	 * First background process updating function.
	 *
	 * @since 1.1.0
	 */
	public function check_database_tables() {
		Install::check_database_tables();
	}
}

```
