# sellkit/1.6.8/includes/funnel/steps/children/downsell.php

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

- Page: https://pluginprobe.com/plugins/sellkit/1.6.8/code/includes/funnel/steps/children/downsell.php
- Raw: https://pluginprobe.com/plugins/sellkit/1.6.8/raw/includes/funnel/steps/children/downsell.php
- Modified: 2023-06-20T08:15:52+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.6.8/code/includes/funnel/steps/children/downsell.php#L10-L20`.

```php
<?php

namespace Sellkit\Funnel\Steps;

use Sellkit\Funnel\Analytics\Data_Updater;
use Sellkit_Funnel;
use Sellkit\Funnel\Steps\Upsell;

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

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

```
