/**
  * Load only assets
  *
  * @param InputInterface  $input
  * @param OutputInterface $output
  *
  * @return InstallCommand
  */
 protected function assetsStep(InputInterface $input, OutputInterface $output)
 {
     $this->commandExecutor->runCommand('pim:installer:assets');
     return $this;
 }
 /**
  * Launchs all commands needed after fixtures loading
  *
  * @param InputInterface  $input
  * @param OutputInterface $output
  *
  * @return DatabaseCommand
  */
 protected function launchCommands(InputInterface $input, OutputInterface $output)
 {
     $this->commandExecutor->runCommand('pim:versioning:refresh')->runCommand('pim:completeness:calculate');
     return $this;
 }