Skip to content

Commit

Permalink
fix: add missed out rector rules to v11 config
Browse files Browse the repository at this point in the history
Resolves: #3447
  • Loading branch information
helsner committed Aug 3, 2023
1 parent 2cade62 commit 11a2514
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions config/v11/typo3-113.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,17 @@
declare(strict_types=1);

use Rector\Config\RectorConfig;
use Ssch\TYPO3Rector\Rector\v11\v3\RemoveBackendUtilityViewOnClickUsageRector;
use Ssch\TYPO3Rector\Rector\v11\v3\ReplaceStdAuthCodeWithHmacRector;
use Ssch\TYPO3Rector\Rector\v11\v3\SubstituteExtbaseRequestGetBaseUriRector;
use Ssch\TYPO3Rector\Rector\v11\v3\SubstituteMethodRmFromListOfGeneralUtilityRector;
use Ssch\TYPO3Rector\Rector\v11\v3\SwitchBehaviorOfArrayUtilityMethodsRector;
use Ssch\TYPO3Rector\Rector\v11\v3\typo3\UseNormalizedParamsToGetRequestUrlRector;

return static function (RectorConfig $rectorConfig): void {
$rectorConfig->import(__DIR__ . '/../config.php');
$rectorConfig->rule(RemoveBackendUtilityViewOnClickUsageRector::class);
$rectorConfig->rule(ReplaceStdAuthCodeWithHmacRector::class);
$rectorConfig->rule(SubstituteMethodRmFromListOfGeneralUtilityRector::class);
$rectorConfig->rule(SwitchBehaviorOfArrayUtilityMethodsRector::class);
$rectorConfig->rule(SubstituteExtbaseRequestGetBaseUriRector::class);
Expand Down

0 comments on commit 11a2514

Please sign in to comment.