From b57bd56b05def3a8712e72eb66c99b490f4320f0 Mon Sep 17 00:00:00 2001
From: Liam Morland <lkmorlan@uwaterloo.ca>
Date: Thu, 30 Jul 2020 14:54:38 -0400
Subject: [PATCH] ISTWCMS-3369: Add type declarations

---
 uw_cfg_common.module | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/uw_cfg_common.module b/uw_cfg_common.module
index aa3bb574..ce40c1fc 100644
--- a/uw_cfg_common.module
+++ b/uw_cfg_common.module
@@ -12,7 +12,7 @@ use Drupal\Core\Form\FormStateInterface;
  *
  * Remove the None option from layout builder styles.
  */
-function uw_cfg_common_form_layout_builder_configure_section_alter(&$form, FormStateInterface $form_state, $form_id) {
+function uw_cfg_common_form_layout_builder_configure_section_alter(array &$form, FormStateInterface $form_state, string $form_id): void {
   // Remove the None option from layout builder styles.
   unset($form['layout_builder_style']['#empty_option']);
 
-- 
GitLab