Neos\Fusion\Core\Parser::parseValueAssignment PHP Method

parseValueAssignment() protected method

Parses a value operation of the type "assignment".
protected parseValueAssignment ( string $objectPath, string $value ) : void
$objectPath string The object path as a string
$value string The unparsed value as a string
return void
    protected function parseValueAssignment($objectPath, $value)
    {
        $processedValue = $this->getProcessedValue($value);
        $this->setValueInObjectTree($this->getParsedObjectPath($objectPath), $processedValue);
    }