Skip to content

Commit

Permalink
Updated Rector to commit 8bcb2c5ce9808dabff49b100df978c1aa601e592
Browse files Browse the repository at this point in the history
rectorphp/rector-src@8bcb2c5 fix: add Symfony support as a composer-based option (#6673)
  • Loading branch information
TomasVotruba committed Jan 16, 2025
1 parent 13e89f8 commit 1ac80cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Application/VersionResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = '7a6c4c5386ce203184897c60f7e070fc43aca15a';
public const PACKAGE_VERSION = '8bcb2c5ce9808dabff49b100df978c1aa601e592';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2025-01-16 19:03:00';
public const RELEASE_DATE = '2025-01-16 13:32:11';
/**
* @var int
*/
Expand Down
4 changes: 2 additions & 2 deletions src/Configuration/RectorConfigBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -481,9 +481,9 @@ public function withPreparedSets(bool $deadCode = \false, bool $codeQuality = \f
}
return $this;
}
public function withComposerBased(bool $twig = \false, bool $doctrine = \false, bool $phpunit = \false) : self
public function withComposerBased(bool $twig = \false, bool $doctrine = \false, bool $phpunit = \false, bool $symfony = \false) : self
{
$setMap = [SetGroup::TWIG => $twig, SetGroup::DOCTRINE => $doctrine, SetGroup::PHPUNIT => $phpunit];
$setMap = [SetGroup::TWIG => $twig, SetGroup::DOCTRINE => $doctrine, SetGroup::PHPUNIT => $phpunit, SetGroup::SYMFONY => $symfony];
foreach ($setMap as $setPath => $isEnabled) {
if ($isEnabled) {
$this->setGroups[] = $setPath;
Expand Down

0 comments on commit 1ac80cb

Please sign in to comment.