From 3b314978eeeb93fe3d0787f4cd1c4a81ccf610e8 Mon Sep 17 00:00:00 2001 From: Andrew Longosz Date: Tue, 25 Feb 2025 10:07:38 +0100 Subject: [PATCH] Fixed indentation in IbexaRectorConfigFactory MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Adam Wójs --- .../Factory/IbexaRectorConfigFactory.php | 46 +++++++++---------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/src/contracts/Factory/IbexaRectorConfigFactory.php b/src/contracts/Factory/IbexaRectorConfigFactory.php index 0ae94cf..841bda7 100644 --- a/src/contracts/Factory/IbexaRectorConfigFactory.php +++ b/src/contracts/Factory/IbexaRectorConfigFactory.php @@ -27,29 +27,29 @@ public function __construct(private array $pathsToProcess, private array $extraS public function __invoke(): RectorConfigBuilder { return RectorConfig::configure() - ->withPaths($this->pathsToProcess) - ->withSets( - array_merge( - [ - IbexaSetList::IBEXA_50->value, - SymfonySetList::SYMFONY_50, - SymfonySetList::SYMFONY_50_TYPES, - SymfonySetList::SYMFONY_51, - SymfonySetList::SYMFONY_52, - SymfonySetList::SYMFONY_52_VALIDATOR_ATTRIBUTES, - SymfonySetList::SYMFONY_53, - SymfonySetList::SYMFONY_54, - SymfonySetList::SYMFONY_CODE_QUALITY, - SymfonySetList::SYMFONY_CONSTRUCTOR_INJECTION, - SymfonySetList::SYMFONY_60, - SymfonySetList::SYMFONY_61, - SymfonySetList::SYMFONY_62, - SymfonySetList::SYMFONY_63, - SymfonySetList::SYMFONY_64, - ], - $this->extraSets - ) - ) + ->withPaths($this->pathsToProcess) + ->withSets( + array_merge( + [ + IbexaSetList::IBEXA_50->value, + SymfonySetList::SYMFONY_50, + SymfonySetList::SYMFONY_50_TYPES, + SymfonySetList::SYMFONY_51, + SymfonySetList::SYMFONY_52, + SymfonySetList::SYMFONY_52_VALIDATOR_ATTRIBUTES, + SymfonySetList::SYMFONY_53, + SymfonySetList::SYMFONY_54, + SymfonySetList::SYMFONY_CODE_QUALITY, + SymfonySetList::SYMFONY_CONSTRUCTOR_INJECTION, + SymfonySetList::SYMFONY_60, + SymfonySetList::SYMFONY_61, + SymfonySetList::SYMFONY_62, + SymfonySetList::SYMFONY_63, + SymfonySetList::SYMFONY_64, + ], + $this->extraSets + ) + ) ; } }