Skip to content

Commit

Permalink
TASK: Add rule to config
Browse files Browse the repository at this point in the history
  • Loading branch information
sabbelasichon committed Sep 27, 2024
1 parent a94a285 commit aa64887
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions config/typo3-13.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@
$rectorConfig->import(__DIR__ . '/v13/typo3-130.php');
$rectorConfig->import(__DIR__ . '/v13/typo3-130-extbase-hash-service-core-hash-service.php');
$rectorConfig->import(__DIR__ . '/v13/typo3-131.php');
$rectorConfig->import(__DIR__ . '/v13/typo3-133.php');
};
11 changes: 11 additions & 0 deletions config/v13/typo3-133.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?php

declare(strict_types=1);

use Rector\Config\RectorConfig;
use Ssch\TYPO3Rector\TYPO313\v3\MigrateViewHelperRenderStaticRector;

return static function (RectorConfig $rectorConfig): void {
$rectorConfig->import(__DIR__ . '/../config.php');
$rectorConfig->rule(MigrateViewHelperRenderStaticRector::class);
};

0 comments on commit aa64887

Please sign in to comment.