Open mrpavlikov opened 8 years ago
changing is_null($var) to (null === $var) is cool, but it does it wrong combining with exclamation mark
is_null($var)
(null === $var)
if (!is_null($var)) => if (!null === $var)
if (!is_null($var))
if (!null === $var)
@mrpavlikov I fixed this issue with my last commit in this repository along with some others : https://github.com/MKCG/phpfmt_7-1
Hope this help ;-)
changing
is_null($var)
to(null === $var)
is cool, but it does it wrong combining with exclamation markif (!is_null($var))
=>if (!null === $var)