[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 77d7fcc138
commit d4c0f33be4
Signed by untrusted user: someonewithpc
GPG Key ID: 7D0C7EAFC9D835A0
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
{
$vars['main_nav_tabs']=[
$vars['main_nav_tabs'] = [
[
'title' => 'Actors',
'route' => 'actors',
@ -58,7 +58,7 @@ class Directory extends Module
[
'title' => 'Groups',
'route' => 'groups',
]
],
];
return Event::next;