We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5178e8e commit b7d6b90Copy full SHA for b7d6b90
src/Storage/NodeStorage.php
@@ -39,14 +39,6 @@ public function getParent(): ?NodeInterface
39
return $this->get('parent');
40
}
41
42
- /**
43
- * {@inheritdoc}
44
- */
45
- public function setChildren(\Traversable $children): StorageInterface
46
- {
47
- return $this->set('children', $children);
48
- }
49
-
50
/**
51
* {@inheritdoc}
52
*/
src/Storage/NodeStorageInterface.php
@@ -22,13 +22,6 @@ public function getChildren();
22
23
public function getParent(): ?NodeInterface;
24
25
26
- * @param \Traversable $children
27
- *
28
- * @return StorageInterface
29
30
- public function setChildren(\Traversable $children): StorageInterface;
31
32
33
* @param null|NodeInterface $parent
34
*
0 commit comments