# elementor/3.24.4/core/experiments/non-existing-dependency.php

Elementor Website Builder – more than just a page builder, version 3.24.4. 32 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.24.4/code/core/experiments/non-existing-dependency.php
- Raw: https://pluginprobe.com/plugins/elementor/3.24.4/raw/core/experiments/non-existing-dependency.php
- Modified: 2023-04-23T11:22:46+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/elementor/3.24.4/code/core/experiments/non-existing-dependency.php#L10-L20`.

```php
<?php
namespace Elementor\Core\Experiments;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

class Non_Existing_Dependency {

	private $feature_id;

	public function __construct( $feature_id ) {
		$this->feature_id = $feature_id;
	}

	public function get_name() {
		return $this->feature_id;
	}

	public function get_title() {
		return $this->feature_id;
	}

	public function is_hidden() {
		return false;
	}

	public static function instance( $feature_id ) {
		return new static( $feature_id );
	}
}

```
