Skip to content

Commit b1040c9

Browse files
carusogabrielondrejmirtes
authored andcommitted
Simplify link for empty function documentation
1 parent 586314f commit b1040c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* Variables assigned in `while` loop condition and `for` loop initial assignment cannot be used after the loop.
1818
* Types in `switch` condition and `case` value must match. PHP compares them loosely by default and that can lead to unexpected results.
1919
* Statically declared methods are called statically.
20-
* Disallow `empty()` - it's a very loose comparison (see [manual](https://secure.php.net/manual/en/function.empty.php)), it's recommended to use more strict one.
20+
* Disallow `empty()` - it's a very loose comparison (see [manual](https://php.net/empty)), it's recommended to use more strict one.
2121
* Always true `instanceof`, type-checking `is_*` functions and strict comparisons `===`/`!==`. These checks can be turned off by setting `checkAlwaysTrueInstanceof`/`checkAlwaysTrueCheckTypeFunctionCall`/`checkAlwaysTrueStrictComparison` to false.
2222
* Correct case for referenced and called function names.
2323
* Correct case for inherited and implemented method names.

0 commit comments

Comments
 (0)