Skip to content
Snippets Groups Projects

feature(core): command fix

Merged Sebastian Pisula requested to merge bugfix/command-return into main
2 files
+ 7
0
Compare changes
  • Side-by-side
  • Inline

Files

@@ -3,6 +3,7 @@
@@ -3,6 +3,7 @@
namespace WPDesk\ActivationReminder\Composer;
namespace WPDesk\ActivationReminder\Composer;
use Composer\Command\BaseCommand;
use Composer\Command\BaseCommand;
 
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Output\OutputInterface;
@@ -58,6 +59,8 @@ class PrepareActivationReminderCommand extends BaseCommand
@@ -58,6 +59,8 @@ class PrepareActivationReminderCommand extends BaseCommand
$this->regenerate_autoload( $target_file, $input );
$this->regenerate_autoload( $target_file, $input );
$output->writeln( "Activation reminder created." );
$output->writeln( "Activation reminder created." );
 
 
return Command::SUCCESS;
}
}
private function create_or_get_target_file_name( array $class_map, $random_class, $random_letter ) {
private function create_or_get_target_file_name( array $class_map, $random_class, $random_letter ) {
Loading