Neos\ContentRepository\Migration\Transformations\AddNewProperty::execute PHP Метод

execute() публичный Метод

Add the new property with the given value on the given node.
public execute ( NodeData $node ) : void
$node Neos\ContentRepository\Domain\Model\NodeData
Результат void
    public function execute(NodeData $node)
    {
        $node->setProperty($this->newPropertyName, $this->value);
    }