Neos\Neos\Ui\Domain\Model\Changes\MoveBefore::apply PHP Méthode

apply() public méthode

Applies this change
public apply ( ) : void
Résultat void
    public function apply()
    {
        if ($this->canApply()) {
            $this->getSubject()->moveBefore($this->getReference());
            $this->updateWorkspaceInfo();
        }
    }
MoveBefore