From b9c3e8960fe53c412acf9569cbc695bb2be7249f Mon Sep 17 00:00:00 2001 From: ResuBaka Date: Fri, 8 Nov 2024 08:26:56 +0100 Subject: [PATCH] docs: add description to zstd dump options --- src/N98/Magento/Command/Database/DumpCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/N98/Magento/Command/Database/DumpCommand.php b/src/N98/Magento/Command/Database/DumpCommand.php index 76b0ad4a..f0198096 100644 --- a/src/N98/Magento/Command/Database/DumpCommand.php +++ b/src/N98/Magento/Command/Database/DumpCommand.php @@ -39,8 +39,8 @@ protected function configure() $this ->setName('db:dump') ->addArgument('filename', InputArgument::OPTIONAL, 'Dump filename') - ->addOption('zstd-level', null, InputOption::VALUE_OPTIONAL, '', 10) - ->addOption('zstd-extra-args', null, InputOption::VALUE_OPTIONAL, '', '') + ->addOption('zstd-level', null, InputOption::VALUE_OPTIONAL, 'Set the level of compression the higher the smaller the result', 10) + ->addOption('zstd-extra-args', null, InputOption::VALUE_OPTIONAL, 'Set custom extra options that zstd supports', '') ->addOption( 'add-time', 't',