Skip to content

Commit 4e3b60a

Browse files
author
Christoph Krapp
committed
[FrameworkBundle] Allow UUID v7 in uid configuration
1 parent 23e3d44 commit 4e3b60a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

DependencyInjection/Configuration.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2132,7 +2132,7 @@ private function addUidSection(ArrayNodeDefinition $rootNode, callable $enableIf
21322132
->children()
21332133
->enumNode('default_uuid_version')
21342134
->defaultValue(6)
2135-
->values([6, 4, 1])
2135+
->values([7, 6, 4, 1])
21362136
->end()
21372137
->enumNode('name_based_uuid_version')
21382138
->defaultValue(5)
@@ -2143,7 +2143,7 @@ private function addUidSection(ArrayNodeDefinition $rootNode, callable $enableIf
21432143
->end()
21442144
->enumNode('time_based_uuid_version')
21452145
->defaultValue(6)
2146-
->values([6, 1])
2146+
->values([7, 6, 1])
21472147
->end()
21482148
->scalarNode('time_based_uuid_node')
21492149
->cannotBeEmpty()

0 commit comments

Comments
 (0)