Neos\Flow\Mvc\Controller\MvcPropertyMappingConfiguration::allowModificationForSubProperty PHP Method

allowModificationForSubProperty() public method

Allow modification for a given property path
public allowModificationForSubProperty ( string $propertyPath ) : MvcPropertyMappingConfiguration
$propertyPath string
return MvcPropertyMappingConfiguration this
    public function allowModificationForSubProperty($propertyPath)
    {
        $this->forProperty($propertyPath)->setTypeConverterOption(PersistentObjectConverter::class, PersistentObjectConverter::CONFIGURATION_MODIFICATION_ALLOWED, true);
        return $this;
    }