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
simonschaufi authored and github-actions[bot] committed Dec 28, 2023
1 parent 3e401f2 commit c4796ce
Showing 1 changed file with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion docs/all_rectors_overview.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 289 Rules Overview
# 290 Rules Overview

## AbstractMessageGetSeverityFluidRector

Expand Down Expand Up @@ -1941,6 +1941,34 @@ Migrate options if type group in TCA

<br>

## MigratePasswordAndSaltedPasswordToPasswordTypeRector

Migrate password and salted password to password type

- class: [`Ssch\TYPO3Rector\Rector\v12\v0\tca\MigratePasswordAndSaltedPasswordToPasswordTypeRector`](../src/Rector/v12/v0/tca/MigratePasswordAndSaltedPasswordToPasswordTypeRector.php)

```diff
'password_field' => [
'label' => 'Password',
'config' => [
- 'type' => 'input',
- 'eval' => 'trim,password,saltedPassword',
+ 'type' => 'password',
],
],
'another_password_field' => [
'label' => 'Password',
'config' => [
- 'type' => 'input',
- 'eval' => 'trim,password',
+ 'type' => 'password',
+ 'hashed' => false,
],
],
```

<br>

## MigrateQueryBuilderExecuteRector

Replace `Querybuilder::execute()` with fitting methods
Expand Down

0 comments on commit c4796ce

Please sign in to comment.