KJ\Magento\Command\Customer\AnonymizeCommand::execute PHP Метод

execute() защищенный Метод

protected execute ( Symfony\Component\Console\Input\InputInterface $input, Symfony\Component\Console\Output\OutputInterface $output ) : integer | void
$input Symfony\Component\Console\Input\InputInterface
$output Symfony\Component\Console\Output\OutputInterface
Результат integer | void
    protected function execute(InputInterface $input, OutputInterface $output)
    {
        $this->_input = $input;
        $this->_output = $output;
        $this->detectMagento($output, true);
        $this->initMagento();
        $tables = $this->_getTables();
        $salt = uniqid('', true);
        foreach ($tables as $table => $emailColumn) {
            $output->writeln("<info>Anonymizing {$table}</info>");
            $this->_anonymizeTable($table, $emailColumn, $salt);
        }
    }