HEX
Server: Apache
System: Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux
User: u90323915 (5560665)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: //proc/self/cwd/wp-content/plugins/elementor/modules/components/components.php
<?php

namespace Elementor\Modules\Components;

use Elementor\Core\Utils\Collection;

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

class Components {
	private Collection $components;

	public static function make( array $components = [] ) {
		return new static( $components );
	}

	private function __construct( array $components = [] ) {
		$this->components = Collection::make( $components );
	}

	public function get_components() {
		return $this->components;
	}
}