Skip to content

Commit

Permalink
Fix dynamically declared property deprecation in TreeNodeMethodsTrait
Browse files Browse the repository at this point in the history
  • Loading branch information
tobias-93 committed May 7, 2024
1 parent aa7c160 commit 8728d4f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/Contract/Entity/TreeNodeInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function getParentNode(): ?self;
public function setParentNode(self $treeNode): void;

/**
* @param string $path the materialized path, eg: the the materialized path to its parent
* @param string $path the materialized path, eg: the materialized path to its parent
*/
public function setMaterializedPath(string $path): void;

Expand Down
1 change: 0 additions & 1 deletion src/Model/Tree/TreeNodeMethodsTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ public function getParentMaterializedPath(): string

public function setParentMaterializedPath(string $path): void
{
$this->parentNodePath = $path;
}

public function getRootMaterializedPath(): string
Expand Down

0 comments on commit 8728d4f

Please sign in to comment.