1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00

document psalter --allow-backwards-incompatible-changes=false option (#2056)

This commit is contained in:
Markus Staab 2019-08-26 05:47:06 +02:00 committed by Matthew Brown
parent e6a93b6d52
commit 51bf0b4001

View File

@ -23,6 +23,7 @@ Updating code is inherently risky, doing so automatically is even more so. I've
- To see what changes Psalter will make ahead of time, you can run it with `--dry-run`.
- You can target particular versions of PHP via `--php-version`, so that (for example) you don't add nullable typehints to PHP 7.0 code, or any typehints at all to PHP 5.6 code. `--php-version` defaults to your current version.
- it has a `--safe-types` mode that will only update PHP 7 return typehints with information Psalm has gathered from non-docblock sources of type information (e.g. typehinted params, `instanceof` checks, other return typehints etc.)
- using `--allow-backwards-incompatible-changes=false` you can make sure to not create backwards incompatible changes
## Plugins