Exemplo n.º 1
0
 /**
  * {@inheritdoc}
  */
 public function process(IndentedLoggerInterface $logger, ContainerAwareCommand $command = null)
 {
     $logger->writeln('running update');
     $logger->indent();
     try {
         $this->stuff->process($logger, $command, null, false, 1);
     } catch (NoProvidersException $e) {
         $logger->writeln('Stuff skipped as not providers found' . PHP_EOL);
     }
     $logger->outdent();
 }