Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 1.12 KB

File metadata and controls

40 lines (29 loc) · 1.12 KB

Rule no_unset_cast

Variables must be set null instead of using (unset) casting.

Examples

Example #1

--- Original
+++ New
 <?php
-$a = (unset) $b;
+$a =  null;

Rule sets

The rule is part of the following rule sets:

References

The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.