Verified Commit 9f2e2c69 authored by quietone's avatar quietone
Browse files

Issue #3487088 by lavanyatalwar, nicxvan: Fix trailing comma in entity type Attribute declarations

(cherry picked from commit 91fc116a)
parent 49b64811
Loading
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -27,7 +27,8 @@
    'label',
    'locked',
    'pattern',
  ])]
  ],
  )]
class DateFormat extends ConfigEntityBase implements DateFormatInterface {

  /**
+2 −1
Original line number Diff line number Diff line
@@ -46,7 +46,8 @@
    'mode',
    'content',
    'hidden',
  ])]
  ],
  )]
class EntityFormDisplay extends EntityDisplayBase implements EntityFormDisplayInterface {

  /**
+2 −1
Original line number Diff line number Diff line
@@ -44,7 +44,8 @@
    'description',
    'targetEntityType',
    'cache',
  ])]
  ],
  )]
class EntityFormMode extends EntityDisplayModeBase implements EntityFormModeInterface {

}
+2 −1
Original line number Diff line number Diff line
@@ -45,7 +45,8 @@
    'mode',
    'content',
    'hidden',
  ])]
  ],
  )]
class EntityViewDisplay extends EntityDisplayBase implements EntityViewDisplayInterface {

  /**
+2 −1
Original line number Diff line number Diff line
@@ -46,7 +46,8 @@
    'description',
    'targetEntityType',
    'cache',
  ])]
  ],
  )]
class EntityViewMode extends EntityDisplayModeBase implements EntityViewModeInterface {

}
Loading