HEX
Server: LiteSpeed
System: Linux server306.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
User: hubdkrco (641)
PHP: 8.3.26
Disabled: NONE
Upload Files
File: /home/hubdkrco/6wgame.pk/wp-content/plugins/colibri-page-builder/src/OCDI/CustomizerOption.php
<?php
/**
 * A class that extends WP_Customize_Setting so we can access
 * the protected updated method when importing options.
 *
 * Used in the Customizer importer.
 *
 * @since 1.1.1
 * @package ocdi
 */

namespace ColibriWP\PageBuilder\OCDI;

use WP_Customize_Setting;

final class CustomizerOption extends WP_Customize_Setting {
    /**
     * Import an option value for this setting.
     *
     * @param mixed $value The option value.
     *
     * @return void
     * @since 1.1.1
     */
    public function import( $value ) {
        $this->update( $value );
    }
}