Bolt\Storage\Entity\MagicAttributeTrait::__get PHP Method

__get() public method

public __get ( $key )
    public function __get($key)
    {
        $method = 'get' . ucfirst($key);
        if (in_array($key, $this->getFields())) {
            return $this->{$method}();
        }
    }