Skip to content

Commit

Permalink
NavigationItem: Add missing return statement in method merge()
Browse files Browse the repository at this point in the history
refs #5600
  • Loading branch information
Johannes Meyer committed Sep 7, 2015
1 parent f958a1c commit 451a0c9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions library/Icinga/Web/Navigation/NavigationItem.php
Expand Up @@ -583,6 +583,8 @@ public function merge(NavigationItem $item)
if ($item->hasChildren()) {
$this->getChildren()->merge($item->getChildren());
}

return $this;
}

/**
Expand Down

0 comments on commit 451a0c9

Please sign in to comment.