Flarum\Event\PrepareSerializedSetting::__construct PHP Method

__construct() public method

public __construct ( string $key, string &$value )
$key string The settings key being saved.
$value string The settings value to save.
    public function __construct($key, &$value)
    {
        $this->key = $key;
        $this->value =& $value;
    }
PrepareSerializedSetting