fix(API): Fix parameter name to match interface

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2023-08-28 14:31:09 +02:00 committed by Anna
parent cf2e3bc0ee
commit 2abb503e60

View file

@ -171,8 +171,8 @@ class NavigationManager implements INavigationManager {
/**
* @inheritDoc
*/
public function setActiveEntry($id) {
$this->activeEntry = $id;
public function setActiveEntry($appId) {
$this->activeEntry = $appId;
}
/**