CI_Driver::__set PHP Method

__set() public method

Handles writing to the parent driver library's properties
public __set ( $var, $val ) : mixed
return mixed
    public function __set($var, $val)
    {
        if (in_array($var, $this->_properties)) {
            $this->_parent->{$var} = $val;
        }
    }