Habari\QueryProfile::__get PHP Method

__get() public method

public __get ( $name )
    public function __get($name)
    {
        switch ($name) {
            case 'total_time':
                return $this->end_time - $this->start_time;
            default:
                return $this->{$name};
        }
    }