You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Symfony/Component/Uid/Command/GenerateUuidCommand.php
+22-7
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ protected function configure(): void
44
44
newInputOption('time-based', null, InputOption::VALUE_REQUIRED, 'The timestamp, to generate a time-based UUID: a parsable date/time string'),
45
45
newInputOption('node', null, InputOption::VALUE_REQUIRED, 'The UUID whose node part should be used as the node of the generated UUID'),
46
46
newInputOption('name-based', null, InputOption::VALUE_REQUIRED, 'The name, to generate a name-based UUID'),
47
-
newInputOption('namespace', null, InputOption::VALUE_REQUIRED, 'The UUID to use at the namespace for named-based UUIDs'),
47
+
newInputOption('namespace', null, InputOption::VALUE_REQUIRED, 'The UUID to use at the namespace for named-based UUIDs. Predefined namespaces keywords "dns", "url", "oid" and "x500" are accepted'),
48
48
newInputOption('random-based', null, InputOption::VALUE_NONE, 'To generate a random-based UUID'),
49
49
newInputOption('count', 'c', InputOption::VALUE_REQUIRED, 'The number of UUID to generate', 1),
50
50
newInputOption('format', 'f', InputOption::VALUE_REQUIRED, 'The UUID output format: rfc4122, base58 or base32', 'rfc4122'),
@@ -145,12 +145,27 @@ protected function execute(InputInterface $input, OutputInterface $output)
0 commit comments