Skip to content

Commit

Permalink
Fixed indentation in IbexaRectorConfigFactory
Browse files Browse the repository at this point in the history
Co-authored-by: Adam Wójs <[email protected]>
  • Loading branch information
alongosz and adamwojs authored Feb 25, 2025
1 parent f37b032 commit 3b31497
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions src/contracts/Factory/IbexaRectorConfigFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
)
;
}
}

0 comments on commit 3b31497

Please sign in to comment.