HEX
Server: LiteSpeed
System: Linux spg20.cloudpowerdns.com 5.14.0-611.35.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 25 03:46:09 EST 2026 x86_64
User: carrerup (3153)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /home/carrerup/.trash/techland/inc/merlin/includes/class-merlin-customizer-option.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.
*
* @package Merlin WP
*/

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