ListController::createTabs(): Add missing return statement

This commit is contained in:
Sukhwinder Dhillon 2023-08-16 12:42:52 +02:00 committed by raviks789
parent 907486ccac
commit 6f04c54f3c
1 changed files with 1 additions and 1 deletions

View File

@ -803,6 +803,6 @@ class ListController extends Controller
*/
private function createTabs()
{
$this->getTabs()->extend(new OutputFormat())->extend(new DashboardAction())->extend(new MenuAction());
return $this->getTabs()->extend(new OutputFormat())->extend(new DashboardAction())->extend(new MenuAction());
}
}