Align array assignment

This commit is contained in:
Michael 2023-09-09 12:01:35 +00:00
parent 9d6166d7d6
commit 72b68abe7f

View File

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