[Directory] Lint fix - missed a coma

This commit is contained in:
Angelo D. Moura 2020-12-02 03:11:37 +00:00 committed by Hugo Sales
parent 793e1b0417
commit f838dbe5f3
1 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ class Directory extends Module
*/ */
public function onStartTwigPopulateVars(array &$vars): bool public function onStartTwigPopulateVars(array &$vars): bool
{ {
$vars['main_nav_tabs']=[ $vars['main_nav_tabs'] = [
[ [
'title' => 'Actors', 'title' => 'Actors',
'route' => 'actors', 'route' => 'actors',
@ -58,7 +58,7 @@ class Directory extends Module
[ [
'title' => 'Groups', 'title' => 'Groups',
'route' => 'groups', 'route' => 'groups',
] ],
]; ];
return Event::next; return Event::next;