whitespace adjustments
authorAndrew Engelbrecht <andrew@fsf.org>
Tue, 25 Jun 2019 18:40:45 +0000 (14:40 -0400)
committerAndrew Engelbrecht <andrew@fsf.org>
Tue, 25 Jun 2019 18:40:45 +0000 (14:40 -0400)
modules/footer/src/Plugin/Block/FooterBlock.php

index 485824e03903d15957a35c664988561734f0cf0e..426cd82d42b26624165039900ef4391ee24f179b 100644 (file)
@@ -47,20 +47,18 @@ class FooterBlock extends BlockBase implements BlockPluginInterface {
       }
 
       usort($menu_array, function($a, $b) {
       }
 
       usort($menu_array, function($a, $b) {
-          return $a['weight'] - $b['weight'];
+        return $a['weight'] - $b['weight'];
       });
 
       });
 
-           return array(
+      return array(
         '#theme' => 'footer',
         '#menu_array' => $menu_array,
         '#theme' => 'footer',
         '#menu_array' => $menu_array,
-                       '#attached' => array(
-                       'library' => array(
-                               'footer/footer',
-                       ),
-               ),
-
-           );
-
-       }
+        '#attached' => array(
+          'library' => array(
+            'footer/footer',
+          ),
+        ),
+      );
 
 
+    }
 }
 }