Skip to content
Snippets Groups Projects

ZERO-162-changes

Open Eduarda Lentz Rodrigues da Silva requested to merge ZERO-162-changes into develop
Compare and Show latest version
4 files
+ 24
20
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -97,11 +97,13 @@ class BlockListCommand extends Command
public function execute(InputInterface $input, OutputInterface $output): int
{
if ($input->getOption(self::PARAM_CHANGED_ONLY)) {
$changedBlockEntries = $this->getChangedCmsBlockEntries();
$this->changedBlockDataProvider->execute($output, $changedBlockEntries);
$changedBlockDto = $this->getChangedCmsBlockEntries();
$tableData = $this->changedBlockDataProvider->execute($output, $changedBlockDto);
$tableData->render($output);
} else {
$blockEntries = $this->getAllBlockEntries->get();
$this->blockDataProvider->execute($output, $blockEntries);
$tableData = $this->blockDataProvider->execute($output, $blockEntries);
$tableData->render($output);
}
return Cli::RETURN_SUCCESS;
Loading