-
Notifications
You must be signed in to change notification settings - Fork 661
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10502 from kkmuffme/warn-for-non-strict-compariso…
…ns-on-truthy-falsy-types report error for non-strict or empty comparison on truthy+falsy union
- Loading branch information
Showing
30 changed files
with
2,314 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# RiskyTruthyFalsyComparison | ||
|
||
Emitted when comparing a value with multiple types that can both contain truthy and falsy values. | ||
|
||
```php | ||
<?php | ||
|
||
/** | ||
* @param array|null $arg | ||
* @return void | ||
*/ | ||
function foo($arg) { | ||
if ($arg) { | ||
// this is risky, bc the empty array and null case are handled together | ||
} | ||
|
||
if (!$arg) { | ||
// this is risky, bc the empty array and null case are handled together | ||
} | ||
} | ||
``` | ||
|
||
## Why this is bad | ||
|
||
The truthy/falsy type of one variable is often forgotten and not handled explicitly causing hard to track down errors. | ||
|
||
## How to fix | ||
|
||
Explicitly validate the variable with strict comparison. |
Oops, something went wrong.