Skip to content

Commit

Permalink
Generate documentation
Browse files Browse the repository at this point in the history
Signed-off-by: GitHub Actions <actions@github.com>
  • Loading branch information
sabbelasichon authored and actions-user committed Nov 25, 2020
1 parent edff2b0 commit 6fe758e
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion docs/all_rectors_overview.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# All 129 Rectors Overview
# All 130 Rectors Overview

## `Array2XmlCsToArray2XmlRector`

Expand Down Expand Up @@ -1755,6 +1755,27 @@ GeneralUtility::verifyFilenameAgainstDenyPattern GeneralUtility::makeInstance(Fi

<br><br>

## `TcaMigrationRector`

- class: [`Ssch\TYPO3Rector\Rector\Core\Tca\TcaMigrationRector`](/src/Rector/Core/Tca/TcaMigrationRector.php)

This Rector migrates the TCA configuration for all configurations in separate files in folder TCA\Configuration. This is done on runtime via core migration classes \TYPO3\CMS\Core\Migrations\TcaMigration for different versions

```diff
-return [
- 'ctrl' => [
- 'divider2tabs' => true,
- ],
- 'columns' => [
- 'sys_language_uid' => [
- ],
- ],
-];
+return ['ctrl' => ['divider2tabs' => true], 'columns' => ['sys_language_uid' => ['config' => ['type' => 'none']]]];
```

<br><br>

## `TemplateGetFileNameToFilePathSanitizerRector`

- class: [`Ssch\TYPO3Rector\Rector\v9\v4\TemplateGetFileNameToFilePathSanitizerRector`](/src/Rector/v9/v4/TemplateGetFileNameToFilePathSanitizerRector.php)
Expand Down

0 comments on commit 6fe758e

Please sign in to comment.