CI_Driver::__get PHP Method

__get() public method

Handles reading of the parent driver library's properties
public __get ( $var ) : mixed
return mixed
    public function __get($var)
    {
        if (in_array($var, $this->_properties)) {
            return $this->_parent->{$var};
        }
    }