PMA\libraries\DisplayResults::__get PHP Method

__get() public method

Get any property of this class
public __get ( string $property ) : mixed | void
$property string name of the property
return mixed | void if property exist, value of the relevant property
    public function __get($property)
    {
        if (array_key_exists($property, $this->_property_array)) {
            return $this->_property_array[$property];
        }
    }
DisplayResults