Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
cmuench committed Oct 23, 2024
1 parent d51383f commit 7f5c129
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions src/N98/Magento/Command/Database/DumpCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
namespace N98\Magento\Command\Database;

use InvalidArgumentException;
use Magento\Framework\Exception\FileSystemException;
use N98\Magento\Command\Database\Compressor\Compressor;
use N98\Util\Console\Enabler;
use N98\Util\Console\Helper\DatabaseHelper;
Expand Down Expand Up @@ -207,7 +208,7 @@ public function getTableDefinitionHelp()
Separate each table to strip by a space.
You can use wildcards like * and ? in the table names to strip multiple
tables. In addition you can specify pre-defined table groups, that start
tables. In addition, you can specify pre-defined table groups, that start
with an @ symbol.
Example: "dataflow_batch_export unimportant_module_* @log"
Expand Down Expand Up @@ -263,7 +264,7 @@ public function getHelp()
* @param OutputInterface $output
*
* @return int
* @throws \Magento\Framework\Exception\FileSystemException
* @throws FileSystemException
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
Expand All @@ -290,7 +291,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
* @param InputInterface $input
* @param OutputInterface $output
* @return Execs
* @throws \Magento\Framework\Exception\FileSystemException
* @throws FileSystemException
*/
private function createExecs(InputInterface $input, OutputInterface $output)
{
Expand Down Expand Up @@ -432,7 +433,7 @@ private function runExec($command, InputInterface $input, OutputInterface $outpu
* @param InputInterface $input
* @param OutputInterface $output
* @return array
* @throws \Magento\Framework\Exception\FileSystemException
* @throws FileSystemException
*/
private function stripTables(InputInterface $input, OutputInterface $output)
{
Expand All @@ -455,7 +456,7 @@ private function stripTables(InputInterface $input, OutputInterface $output)
* @param InputInterface $input
* @param OutputInterface $output
* @return array
* @throws \Magento\Framework\Exception\FileSystemException
* @throws FileSystemException
*/
private function excludeTables(InputInterface $input, OutputInterface $output)
{
Expand Down Expand Up @@ -487,7 +488,7 @@ private function excludeTables(InputInterface $input, OutputInterface $output)
/**
* @param string $list space separated list of tables
* @return array
* @throws \Magento\Framework\Exception\FileSystemException
* @throws FileSystemException
*/
private function resolveDatabaseTables($list)
{
Expand Down

0 comments on commit 7f5c129

Please sign in to comment.