1 | <?php |
||
14 | trait ParentNodeTrait |
||
15 | { |
||
16 | /** |
||
17 | * Collection of child nodes (objects implementing ChildNodeInterface) |
||
18 | * @var NodeCollection |
||
19 | */ |
||
20 | protected $collection; |
||
21 | |||
22 | /** |
||
23 | * Returns array containing default child nodes. |
||
24 | * |
||
25 | * Override this method if you need to implement parent node class that must contain certain children by default. |
||
26 | * |
||
27 | * @return ChildNodeInterface[] |
||
28 | */ |
||
29 | protected function defaultChildren() |
||
33 | |||
34 | /** |
||
35 | * Initializes collection of child nodes. |
||
36 | * |
||
37 | * This method is called once when accessing collection first time |
||
38 | * or constructing node with children passed to constructor argument. |
||
39 | * |
||
40 | * @param array $items |
||
41 | */ |
||
42 | protected function initializeCollection(array $items) |
||
50 | |||
51 | /** |
||
52 | * Returns collection of child nodes. |
||
53 | * |
||
54 | * @return \Nayjest\Collection\CollectionInterface|ChildNodeInterface[] |
||
55 | */ |
||
56 | public function children() |
||
64 | |||
65 | /** |
||
66 | * Returns true if collection of child nodes is writable (open for modifications), returns false otherwise. |
||
67 | * |
||
68 | * @return bool |
||
69 | */ |
||
70 | final public function isWritable() |
||
74 | |||
75 | /** |
||
76 | * Returns collection containing all descendant nodes. |
||
77 | * |
||
78 | * @return CollectionInterface|ObjectCollection|ChildNodeInterface[] |
||
79 | */ |
||
80 | public function getChildrenRecursive() |
||
92 | |||
93 | /** |
||
94 | * Clears collection of child nodes and attaches new children. |
||
95 | * |
||
96 | * @param Traversable|ChildNodeInterface[] $children |
||
97 | * |
||
98 | * @return $this |
||
99 | */ |
||
100 | public function setChildren($children) |
||
106 | |||
107 | /** |
||
108 | * Attaches child node. |
||
109 | * |
||
110 | * @param ChildNodeInterface $item |
||
111 | * |
||
112 | * @return $this |
||
113 | */ |
||
114 | public function addChild(ChildNodeInterface $item) |
||
120 | |||
121 | /** |
||
122 | * Attaches list of child nodes. |
||
123 | * |
||
124 | * @param array|Traversable $children |
||
125 | * |
||
126 | * @return $this |
||
127 | */ |
||
128 | public function addChildren($children) |
||
134 | } |
||
135 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.