Skip to content

Commit

Permalink
load devs commands
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasVotruba committed Aug 15, 2023
1 parent 6d0f7da commit 78e491a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/DependencyInjection/LazyContainerFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -437,8 +437,10 @@ public function create(): RectorConfig
->giveTagged(RectorInterface::class);

// dev
$rectorConfig->tag(MissingInSetCommand::class, Command::class);
$rectorConfig->tag(OutsideAnySetCommand::class, Command::class);
if (class_exists(MissingInSetCommand::class)) {
$rectorConfig->tag(MissingInSetCommand::class, Command::class);
$rectorConfig->tag(OutsideAnySetCommand::class, Command::class);
}

$rectorConfig->alias(TypeParser::class, BetterTypeParser::class);

Expand Down

0 comments on commit 78e491a

Please sign in to comment.