Skip to content

Commit

Permalink
[DOCS] Generate documentation
Browse files Browse the repository at this point in the history
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
sabbelasichon authored and github-actions[bot] committed Mar 8, 2024
1 parent ee6bc41 commit 498ec4b
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions docs/all_rectors_overview.md
@@ -1,4 +1,4 @@
# 121 Rules Overview
# 122 Rules Overview

<br>

Expand All @@ -14,7 +14,7 @@

- [TYPO312](#typo312) (39)

- [TYPO313](#typo313) (9)
- [TYPO313](#typo313) (10)

- [TypeDeclaration](#typedeclaration) (1)

Expand Down Expand Up @@ -2562,6 +2562,28 @@ Use AsEventListener attribute

<br>

### IntroduceCapabilitiesBitSetRector

Introduce capabilities bit set

- class: [`Ssch\TYPO3Rector\TYPO313\v0\IntroduceCapabilitiesBitSetRector`](../rules/TYPO313/v0/IntroduceCapabilitiesBitSetRector.php)

```diff
+use TYPO3\CMS\Core\Resource\Capabilities;
use TYPO3\CMS\Core\Resource\ResourceStorageInterface;

-echo ResourceStorageInterface::CAPABILITY_BROWSABLE;
-echo ResourceStorageInterface::CAPABILITY_PUBLIC;
-echo ResourceStorageInterface::CAPABILITY_WRITABLE;
-echo ResourceStorageInterface::CAPABILITY_HIERARCHICAL_IDENTIFIERS;
+echo Capabilities::CAPABILITY_BROWSABLE;
+echo Capabilities::CAPABILITY_PUBLIC;
+echo Capabilities::CAPABILITY_WRITABLE;
+echo Capabilities::CAPABILITY_HIERARCHICAL_IDENTIFIERS;
```

<br>

### MigrateExtbaseHashServiceToUseCoreHashServiceRector

Migrate the class HashService from extbase to the one from TYPO3 core
Expand Down

0 comments on commit 498ec4b

Please sign in to comment.