Lines Matching refs:return
25 * @return Node
29 return $this->head;
34 * @return Node|bool
43 return $node;
47 return false;
52 * @return \SplStack
65 return $result;
69 * @return \RecursiveIteratorIterator
73 return new \RecursiveIteratorIterator(
138 * @return mixed
142 return $this->uid;
163 * @return array
167 return $this->children;
179 * @return mixed
183 return $this->data;
202 * @return bool
213 return !$tree->find($uid);
217 * @return \IJsonRPC\Helpers\Tree\Node
221 return $this->parent;
225 * @return Node
229 return $this->children[$this->index];
233 * @return scalar
237 return $this->index;
241 * @return void
249 * @return void
257 * @return bool
261 return array_key_exists($this->index, $this->children);
265 * @return int
269 return count($this->children);
273 * @return bool
277 return !empty($this->children);
281 * @return \RecursiveArrayIterator
285 return new \RecursiveArrayIterator($this->children);