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
* 6.4:
[Console] Table counts wrong column width when using colspan and `setColumnMaxWidth()`
[Console] Table counts wrong number of padding symbols in `renderCell()` method when cell contain unicode variant selector
[Cache] Fix using a `ChainAdapter` as an adapter for a pool
[Serializer] Fix collect_denormalization_errors flag in defaultContext
[VarDumper] Avoid deprecated call in PgSqlCaster
Fix command option mode (InputOption::VALUE_REQUIRED)
[Uid] Improve entropy of the increment for UUIDv7
Copy file name to clipboardExpand all lines: Command/TranslationPullCommand.php
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -84,10 +84,10 @@ protected function configure(): void
84
84
newInputArgument('provider', null !== $defaultProvider ? InputArgument::OPTIONAL : InputArgument::REQUIRED, 'The provider to pull translations from.', $defaultProvider),
85
85
newInputOption('force', null, InputOption::VALUE_NONE, 'Override existing translations with provider ones (it will delete not synchronized messages).'),
86
86
newInputOption('intl-icu', null, InputOption::VALUE_NONE, 'Associated to --force option, it will write messages in "%domain%+intl-icu.%locale%.xlf" files.'),
87
-
newInputOption('domains', null, InputOption::VALUE_OPTIONAL | InputOption::VALUE_IS_ARRAY, 'Specify the domains to pull.'),
88
-
newInputOption('locales', null, InputOption::VALUE_OPTIONAL | InputOption::VALUE_IS_ARRAY, 'Specify the locales to pull.'),
89
-
newInputOption('format', null, InputOption::VALUE_OPTIONAL, 'Override the default output format.', 'xlf12'),
90
-
newInputOption('as-tree', null, InputOption::VALUE_OPTIONAL, 'Write messages as a tree-like structure. Needs --format=yaml. The given value defines the level where to switch to inline YAML'),
87
+
newInputOption('domains', null, InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY, 'Specify the domains to pull.'),
88
+
newInputOption('locales', null, InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY, 'Specify the locales to pull.'),
89
+
newInputOption('format', null, InputOption::VALUE_REQUIRED, 'Override the default output format.', 'xlf12'),
90
+
newInputOption('as-tree', null, InputOption::VALUE_REQUIRED, 'Write messages as a tree-like structure. Needs --format=yaml. The given value defines the level where to switch to inline YAML'),
91
91
])
92
92
->setHelp(<<<'EOF'
93
93
The <info>%command.name%</> command pulls translations from the given provider. Only
0 commit comments