Ejemplo n.º 1
0
 /**
  * Get the Tree for the provided folder
  *
  * @param  string $tree Folder that will be parsed
  * @return Tree   Instance of Tree for the provided folder
  */
 public function getTree($tree)
 {
     $tree = new Tree($tree, $this->getClient(), $this);
     $tree->parse();
     return $tree;
 }