diff --git a/src/Configuration/RectorConfigBuilder.php b/src/Configuration/RectorConfigBuilder.php index 588aec729d7..fde4bec627d 100644 --- a/src/Configuration/RectorConfigBuilder.php +++ b/src/Configuration/RectorConfigBuilder.php @@ -31,9 +31,6 @@ use Rector\Set\SetManager; use Rector\Set\ValueObject\DowngradeLevelSetList; use Rector\Set\ValueObject\SetList; -use Rector\Symfony\Set\FOSRestSetList; -use Rector\Symfony\Set\JMSSetList; -use Rector\Symfony\Set\SensiolabsSetList; use Rector\Symfony\Set\SymfonySetList; use Rector\ValueObject\Configuration\LevelOverflow; use Rector\ValueObject\PhpVersion; @@ -510,18 +507,6 @@ public function withAttributesSets( $this->sets[] = PHPUnitSetList::ANNOTATIONS_TO_ATTRIBUTES; } - if ($fosRest || $all) { - $this->sets[] = FOSRestSetList::ANNOTATIONS_TO_ATTRIBUTES; - } - - if ($jms || $all) { - $this->sets[] = JMSSetList::ANNOTATIONS_TO_ATTRIBUTES; - } - - if ($sensiolabs || $all) { - $this->sets[] = SensiolabsSetList::ANNOTATIONS_TO_ATTRIBUTES; - } - if ($behat || $all) { $this->sets[] = SetList::BEHAT_ANNOTATIONS_TO_ATTRIBUTES; }