From a68fdc882f86bf95a8cb8b39c90916a1ca8c0799 Mon Sep 17 00:00:00 2001
From: bhanuprakashnani <bhanuprakashnani@3557360.no-reply.drupal.org>
Date: Thu, 26 Apr 2018 07:39:57 +0200
Subject: [PATCH] Issue #2864264 by Pavan B S, bhanuprakashnani: Convert module
 to use short array syntax (new coding standard)

---
 src/BlockEntityStorage.php        | 2 +-
 src/Form/FieldBlockConfigForm.php | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/BlockEntityStorage.php b/src/BlockEntityStorage.php
index 35ee810..034ec7f 100644
--- a/src/BlockEntityStorage.php
+++ b/src/BlockEntityStorage.php
@@ -76,7 +76,7 @@ class BlockEntityStorage extends ConfigEntityStorage {
     $entity_query = $this->getQuery();
     $entity_query->condition('plugin', 'fieldblock:', 'STARTS_WITH');
     $result = $entity_query->execute();
-    return $result ? $this->loadMultiple($result) : array();
+    return $result ? $this->loadMultiple($result) : [];
   }
 
   /**
diff --git a/src/Form/FieldBlockConfigForm.php b/src/Form/FieldBlockConfigForm.php
index abfa7bd..4994b28 100644
--- a/src/Form/FieldBlockConfigForm.php
+++ b/src/Form/FieldBlockConfigForm.php
@@ -77,13 +77,13 @@ class FieldBlockConfigForm extends ConfigFormBase {
    */
   public function buildForm(array $form, FormStateInterface $form_state) {
     $enabled = $this->fieldblock_controller->getEnabledEntityTypes();
-    $form['enabled_entity_types'] = array(
+    $form['enabled_entity_types'] = [
       '#type' => 'checkboxes',
       '#title' => $this->t('Enable Entity Types'),
       '#options' => $this->getEntityTypeLabels(),
       '#description' => $this->t('Select the Entity Types to expose as field blocks.'),
       '#default_value' => $enabled,
-    );
+    ];
     $orphaned_types = $this->getOrphanedEntityTypes($enabled);
     $cleanup_options = [];
     $entity_type_definitions = $this->entityManager->getDefinitions();
-- 
GitLab