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 13, 2020
1 parent 9b0e17d commit ab761e7
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion docs/all_rectors_overview.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# All 97 Rectors Overview
# All 98 Rectors Overview

## `AddCodeCoverageIgnoreToMethodRectorDefinitionRector`

Expand Down Expand Up @@ -1694,6 +1694,19 @@ Use `$fileObject->getMetaData()->get()` instead of `$fileObject->_getMetaData()`

<br><br>

## `UseMethodGetPageShortcutDirectlyFromSysPageRector`

- class: [`Ssch\TYPO3Rector\Rector\v9\v3\UseMethodGetPageShortcutDirectlyFromSysPageRector`](/src/Rector/v9/v3/UseMethodGetPageShortcutDirectlyFromSysPageRector.php)

Use method getPageShortcut directly from PageRepository

```diff
-$GLOBALS['TSFE']->getPageShortcut('shortcut', 1, 1);
+$GLOBALS['TSFE']->sys_page->getPageShortcut('shortcut', 1, 1);
```

<br><br>

## `UseNativePhpHex2binMethodRector`

- class: [`Ssch\TYPO3Rector\Rector\v10\v0\UseNativePhpHex2binMethodRector`](/src/Rector/v10/v0/UseNativePhpHex2binMethodRector.php)
Expand Down

0 comments on commit ab761e7

Please sign in to comment.