@@ -94,10 +94,10 @@ configure the behavior of the factory using configuration files::
94
94
# config/packages/uid.yaml
95
95
framework :
96
96
uid :
97
- default_uuid_version : 6
97
+ default_uuid_version : 7
98
98
name_based_uuid_version : 5
99
99
name_based_uuid_namespace : 6ba7b810-9dad-11d1-80b4-00c04fd430c8
100
- time_based_uuid_version : 6
100
+ time_based_uuid_version : 7
101
101
time_based_uuid_node : 121212121212
102
102
103
103
.. code-block :: xml
@@ -113,10 +113,10 @@ configure the behavior of the factory using configuration files::
113
113
114
114
<framework : config >
115
115
<framework : uid
116
- default_uuid_version =" 6 "
116
+ default_uuid_version ="7 "
117
117
name_based_uuid_version =" 5"
118
118
name_based_uuid_namespace =" 6ba7b810-9dad-11d1-80b4-00c04fd430c8"
119
- time_based_uuid_version =" 6 "
119
+ time_based_uuid_version =" 7 "
120
120
time_based_uuid_node =" 121212121212"
121
121
/>
122
122
</framework : config >
@@ -135,10 +135,10 @@ configure the behavior of the factory using configuration files::
135
135
136
136
$container->extension('framework', [
137
137
'uid' => [
138
- 'default_uuid_version' => 6 ,
138
+ 'default_uuid_version' => 7 ,
139
139
'name_based_uuid_version' => 5,
140
140
'name_based_uuid_namespace' => '6ba7b810-9dad-11d1-80b4-00c04fd430c8',
141
- 'time_based_uuid_version' => 6 ,
141
+ 'time_based_uuid_version' => 7 ,
142
142
'time_based_uuid_node' => 121212121212,
143
143
],
144
144
]);
@@ -160,7 +160,7 @@ on the configuration you defined::
160
160
161
161
public function generate(): void
162
162
{
163
- // This creates a UUID of the version given in the configuration file (v6 by default)
163
+ // This creates a UUID of the version given in the configuration file (v7 by default)
164
164
$uuid = $this->uuidFactory->create();
165
165
166
166
$nameBasedUuid = $this->uuidFactory->nameBased(/** ... */);
0 commit comments