@@ -90,10 +90,10 @@ configure the behavior of the factory using configuration files::
90
90
# config/packages/uid.yaml
91
91
framework :
92
92
uid :
93
- default_uuid_version : 6
93
+ default_uuid_version : 7
94
94
name_based_uuid_version : 5
95
95
name_based_uuid_namespace : 6ba7b810-9dad-11d1-80b4-00c04fd430c8
96
- time_based_uuid_version : 6
96
+ time_based_uuid_version : 7
97
97
time_based_uuid_node : 121212121212
98
98
99
99
.. code-block :: xml
@@ -109,10 +109,10 @@ configure the behavior of the factory using configuration files::
109
109
110
110
<framework : config >
111
111
<framework : uid
112
- default_uuid_version =" 6 "
112
+ default_uuid_version =" 7 "
113
113
name_based_uuid_version =" 5"
114
114
name_based_uuid_namespace =" 6ba7b810-9dad-11d1-80b4-00c04fd430c8"
115
- time_based_uuid_version =" 6 "
115
+ time_based_uuid_version =" 7 "
116
116
time_based_uuid_node =" 121212121212"
117
117
/>
118
118
</framework : config >
@@ -131,10 +131,10 @@ configure the behavior of the factory using configuration files::
131
131
132
132
$container->extension('framework', [
133
133
'uid' => [
134
- 'default_uuid_version' => 6 ,
134
+ 'default_uuid_version' => 7 ,
135
135
'name_based_uuid_version' => 5,
136
136
'name_based_uuid_namespace' => '6ba7b810-9dad-11d1-80b4-00c04fd430c8',
137
- 'time_based_uuid_version' => 6 ,
137
+ 'time_based_uuid_version' => 7 ,
138
138
'time_based_uuid_node' => 121212121212,
139
139
],
140
140
]);
@@ -156,7 +156,7 @@ on the configuration you defined::
156
156
157
157
public function generate(): void
158
158
{
159
- // This creates a UUID of the version given in the configuration file (v6 by default)
159
+ // This creates a UUID of the version given in the configuration file (v7 by default)
160
160
$uuid = $this->uuidFactory->create();
161
161
162
162
$nameBasedUuid = $this->uuidFactory->nameBased(/** ... */);
0 commit comments