Fork me on GitHub
a Sensio Labs Product

I ate three cookies πŸͺ (v3.40.2) edition

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:

Source classΒΆ

PhpCsFixer\Fixer\CastNotation\NoUnsetCastFixer