# sellkit/2.7.0/includes/funnel/steps/children/optin.php

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

- Page: https://pluginprobe.com/plugins/sellkit/2.7.0/code/includes/funnel/steps/children/optin.php
- Raw: https://pluginprobe.com/plugins/sellkit/2.7.0/raw/includes/funnel/steps/children/optin.php
- Modified: 2025-10-06T16:06:30+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/2.7.0/code/includes/funnel/steps/children/optin.php#L10-L20`.

```php
<?php

namespace Sellkit\Funnel\Steps;

use Sellkit\Funnel\Steps\Sales_Page;

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

/**
 * Class Sellkit Optin.
 *
 * @since 1.5.0
 */
class Optin extends Sales_Page {
	/**
	 * Upsell constructor.
	 *
	 * @since 1.5.0
	 */
	public function __construct() { // phpcs:ignore Generic.CodeAnalysis.UselessOverridingMethod.Found
		parent::__construct();
	}
}

```
