unHideSubtree() abstract public méthode

If not make sure only children down to first hidden node is marked visible.
abstract public unHideSubtree ( string $pathString )
$pathString string
 /**
  * Sets a location to be unhidden, and self + children to visible unless a parent is hiding the tree.
  * If not make sure only children down to first hidden node is marked visible.
  *
  * @param string $pathString
  */
 public function unHideSubtree($pathString)
 {
     try {
         return $this->innerGateway->unHideSubtree($pathString);
     } catch (DBALException $e) {
         throw new RuntimeException('Database error', 0, $e);
     } catch (PDOException $e) {
         throw new RuntimeException('Database error', 0, $e);
     }
 }