Flarum\Event\SettingWasSet::__construct PHP Method

__construct() public method

public __construct ( string $key, string $value )
$key string The setting key that was set.
$value string The setting value that was set.
    public function __construct($key, $value)
    {
        $this->key = $key;
        $this->value = $value;
    }
SettingWasSet