Searched refs:PathTreeNode (Results 1 – 3 of 3) sorted by relevance
5 class PathTreeNode extends TreeNode class22 public static function buildTreeViaFileSystemChildren(Path $rootSpace = null): PathTreeNode24 $root = PathTreeNode::createPathTreeNodeFromPath($rootSpace);33 * @param PathTreeNode $parentPathTreeNode36 public static function buildTreeFromFileSystemRecursively(PathTreeNode $parentPathTreeNode)41 $childTreeNode = PathTreeNode::createPathTreeNodeFromPath($childPath);54 private static function createPathTreeNodeFromPath(Path $path): PathTreeNode56 return new PathTreeNode($path);69 * @var PathTreeNode[]76 $actualNode = PathTreeNode::createPathTreeNodeFromPath($path);[all …]
636 $tree = PathTreeNode::buildTreeViaFileSystemChildren($namespacePath);652 * @param PathTreeNode $pathTreeNode657 function treeProcessTree(string &$html, PathTreeNode $pathTreeNode, array $data)677 * @var PathTreeNode[] $children
288 public static function getTree(Path $path): PathTreeNode290 return PathTreeNode::buildTreeViaFileSystemChildren($path);