File "switch-control.php"

Full Path: /home/diablzlo/glucosebalnce.com/wp-content/plugins/elementor/modules/atomic-widgets/controls/types/switch-control.php
File size: 368 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace Elementor\Modules\AtomicWidgets\Controls\Types;

use Elementor\Modules\AtomicWidgets\Base\Atomic_Control_Base;

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

class Switch_Control extends Atomic_Control_Base {
	public function get_type(): string {
		return 'switch';
	}

	public function get_props(): array {
		return [];
	}
}