We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80777e5 commit 47581afCopy full SHA for 47581af
README.md
@@ -17,7 +17,7 @@
17
* Variables assigned in `while` loop condition and `for` loop initial assignment cannot be used after the loop.
18
* Variables set in foreach that's always looped thanks to non-empty arrays cannot be used after the loop.
19
* Types in `switch` condition and `case` value must match. PHP compares them loosely by default and that can lead to unexpected results.
20
-* Statically declared methods are called statically.
+* Check that statically declared methods are called statically.
21
* Disallow `empty()` - it's a very loose comparison (see [manual](https://php.net/empty)), it's recommended to use more strict one.
22
* Disallow variable variables (`$$foo`, `$this->$method()` etc.)
23
* Disallow overwriting variables with foreach key and value variables
0 commit comments