is_null,yoda_style.test 242 B

123456789101112131415
  1. --TEST--
  2. Integration of fixers: is_null,yoda_style.
  3. --RULESET--
  4. {"is_null": true, "yoda_style": {"identical": false}}
  5. --EXPECT--
  6. <?php
  7. $foo === null;
  8. $bar === null;
  9. $baz === null;
  10. --INPUT--
  11. <?php
  12. null === $foo;
  13. is_null($bar);
  14. $baz === null;