]> git.mxchange.org Git - friendica.git/commitdiff
Align array assignment
authorMichael <heluecht@pirati.ca>
Sat, 9 Sep 2023 12:01:35 +0000 (12:01 +0000)
committerMichael <heluecht@pirati.ca>
Sat, 9 Sep 2023 12:01:35 +0000 (12:01 +0000)
src/Content/Nav.php

index 6cc799eb6b7fceedb43ca806b0ac29a4e028c324..cac03ccaad2bae32c56fb93a55d5e5699c6f2961 100644 (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
        ];
 
        /**