/**
  * {@inheritdoc}
  */
 public function help(oxIOutput $oOutput)
 {
     $oOutput->writeLn('Usage: fix:states [options] <module_id> [<other_module_id>...]');
     $oOutput->writeLn();
     $oOutput->writeLn('This command fixes information stored in database of modules');
     $oOutput->writeln();
     $oOutput->writeLn('Available options:');
     $oOutput->writeLn('  -a, --all         Passes all modules');
     $oOutput->writeLn('  -b, --base-shop   Fix only on base shop');
     $oOutput->writeLn('  --shop=<shop_id>  Specifies in which shop to fix states');
     $oOutput->writeLn('  -n, --no-debug    No debug output');
 }
 /**
  * {@inheritdoc}
  */
 public function help(oxIOutput $oOutput)
 {
     $oOutput->writeLn('Usage: cache:clear [options]');
     $oOutput->writeLn();
     $oOutput->writeLn('This command clears out contents of OXID tmp folder');
     $oOutput->writeLn('It applies following rules:');
     $oOutput->writeLn(' * Does not delete .htaccess');
     $oOutput->writeLn(' * Does not delete smarty directory but its contents by default');
     $oOutput->writeln();
     $oOutput->writeLn('Available options:');
     $oOutput->writeLn('  -s, --smarty     Clears out only smarty cache');
 }