diff options
author | quietone <quietone@2572884.no-reply.drupal.org> | 2024-11-17 18:24:05 +1300 |
---|---|---|
committer | quietone <quietone@2572884.no-reply.drupal.org> | 2024-11-17 18:24:05 +1300 |
commit | 91fc116a06eab1ef31b4dabde798656cce8c75a2 (patch) | |
tree | d6fd30e0a08a9f33b2ebfe7934e5406ae2113764 /core/modules/config | |
parent | be64557b884ec2c730732aa15d3c0784f8f23da3 (diff) | |
download | drupal-91fc116a06eab1ef31b4dabde798656cce8c75a2.tar.gz drupal-91fc116a06eab1ef31b4dabde798656cce8c75a2.zip |
Issue #3487088 by lavanyatalwar, nicxvan: Fix trailing comma in entity type Attribute declarations
Diffstat (limited to 'core/modules/config')
-rw-r--r-- | core/modules/config/tests/config_test/src/Entity/ConfigTest.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/modules/config/tests/config_test/src/Entity/ConfigTest.php b/core/modules/config/tests/config_test/src/Entity/ConfigTest.php index 412aff95ae1..7f73622e5a2 100644 --- a/core/modules/config/tests/config_test/src/Entity/ConfigTest.php +++ b/core/modules/config/tests/config_test/src/Entity/ConfigTest.php @@ -54,7 +54,8 @@ use Drupal\Core\StringTranslation\TranslatableMarkup; 'size_value', 'protected_property', 'array_property', - ])] + ], + )] class ConfigTest extends ConfigEntityBase implements ConfigTestInterface { /** |