Align array assignment

This commit is contained in:
Michael 2023-09-09 12:01:35 +00:00
parent 9d6166d7d6
commit 72b68abe7f
1 changed files with 13 additions and 13 deletions

View File

@ -40,21 +40,21 @@ use Friendica\Network\HTTPException;
class Nav
{
private static $selected = [
'global' => null,
'community' => null,
'channel' => null,
'network' => null,
'home' => null,
'profiles' => null,
'global' => null,
'community' => null,
'channel' => null,
'network' => null,
'home' => null,
'profiles' => null,
'introductions' => null,
'notifications' => null,
'messages' => null,
'directory' => null,
'settings' => null,
'contacts' => null,
'delegation' => null,
'calendar' => null,
'register' => null
'messages' => null,
'directory' => null,
'settings' => null,
'contacts' => null,
'delegation' => null,
'calendar' => null,
'register' => null
];
/**