# elementor/3.7.5/core/experiments/wrap-core-dependency.php

Elementor Website Builder – more than just a page builder, version 3.7.5. 24 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.7.5/code/core/experiments/wrap-core-dependency.php
- Raw: https://pluginprobe.com/plugins/elementor/3.7.5/raw/core/experiments/wrap-core-dependency.php
- Modified: 2022-08-01T00:11:38+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.7.5/code/core/experiments/wrap-core-dependency.php#L10-L20`.

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

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

class Wrap_Core_Dependency {

	private $feature_data;

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

	public function get_name() {
		return $this->feature_data['name'];
	}

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

```
