Bolt\Legacy\Content::__call PHP Method

__call() public method

Magic __call function, used for when templates use {{ content.title }}, so we can map it to $this->values['title'].
public __call ( string $name, array $arguments ) : mixed
$name string Method name originally called
$arguments array Arguments to the call
return mixed return value of the call
    public function __call($name, $arguments)
    {
        $value = $this->getDecodedValue($name);
        if (!is_null($value)) {
            return $value;
        }
        return false;
    }