Habari\Options::__unset PHP Method

__unset() public method

Removes an option from the options table
public __unset ( string $name )
$name string The name of the option
    public function __unset($name)
    {
        unset($this->options[$name]);
        DB::delete(DB::table('options'), array('name' => $name));
    }