Neos\Fusion\TypoScriptObjects\AbstractTypoScriptObject::tsValue PHP Method

tsValue() protected method

Note that subsequent calls of tsValue() with the same TypoScript path will return the same values since the first evaluated value will be cached in memory.
protected tsValue ( string $path ) : mixed
$path string
return mixed
    protected function tsValue($path)
    {
        $fullPath = $this->path . '/' . $path;
        if (!isset($this->tsValueCache[$fullPath])) {
            $this->tsValueCache[$fullPath] = $this->tsRuntime->evaluate($fullPath, $this);
        }
        return $this->tsValueCache[$fullPath];
    }