Neos\Neos\Ui\Domain\Model\Changes\Create::apply PHP Метод

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

Create a new node beneath the subject
public apply ( ) : void
Результат void
    public function apply()
    {
        if ($this->canApply()) {
            $subject = $this->getSubject();
            $this->createNode($subject);
            $this->updateWorkspaceInfo();
        }
    }