Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / web / core / modules / field_ui / src / Form / EntityViewDisplayEditForm.php
index 898f984d2a3eef31cfcf88bd581bb36d16050dff..36499af31553bca8cafa7f707977805292a02d41 100644 (file)
@@ -11,6 +11,8 @@ use Symfony\Component\DependencyInjection\ContainerInterface;
 
 /**
  * Edit form for the EntityViewDisplay entity type.
+ *
+ * @internal
  */
 class EntityViewDisplayEditForm extends EntityDisplayFormBase {
 
@@ -71,8 +73,8 @@ class EntityViewDisplayEditForm extends EntityDisplayFormBase {
     // Insert an empty placeholder for the label column.
     $label = [
       'empty_cell' => [
-        '#markup' => ' '
-      ]
+        '#markup' => ' ',
+      ],
     ];
     $label_position = array_search('plugin', array_keys($extra_field_row));
     $extra_field_row = array_slice($extra_field_row, 0, $label_position, TRUE) + $label + array_slice($extra_field_row, $label_position, count($extra_field_row) - 1, TRUE);
@@ -112,7 +114,6 @@ class EntityViewDisplayEditForm extends EntityDisplayFormBase {
    * {@inheritdoc}
    */
   protected function getDisplayModesLink() {
-    ;
     return [
       '#type' => 'link',
       '#title' => t('Manage view modes'),