# sellkit/1.5.4/includes/funnel/steps/base-steps.php

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

- Page: https://pluginprobe.com/plugins/sellkit/1.5.4/code/includes/funnel/steps/base-steps.php
- Raw: https://pluginprobe.com/plugins/sellkit/1.5.4/raw/includes/funnel/steps/base-steps.php
- Modified: 2023-01-05T10:11:06+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.5.4/code/includes/funnel/steps/base-steps.php#L10-L20`.

```php
<?php

namespace Sellkit\Funnel\Steps;

use Sellkit\Database;
use Sellkit\Funnel\Contacts\Base_Contacts;
use Sellkit_Funnel;

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

/**
 * Base statistics class.
 *
 * @since 1.5.0
 */
class Base_Step {

	/**
	 * SellKit funnel class.
	 *
	 * @var Object|Sellkit_Funnel|null
	 * @since 1.5.0
	 */
	public $sellkit_funnel;

	/**
	 * SellKit funnel contact class.
	 *
	 * @var Base_Contact
	 * @since 1.5.0
	 */
	public $contacts;

	/**
	 * Base_Step constructor.
	 *
	 * @since 1.5.0
	 */
	public function __construct() {
		$this->sellkit_funnel = Sellkit_Funnel::get_instance();
		$this->contacts       = new Base_Contacts();
	}
}

```
