FalseOperand
Emitted when using false
as part of an operation (e.g. +
, .
, ^
etc.)
<?php
echo 5 . false;
Why this is bad
false
does not make sense in these operations
Emitted when using false
as part of an operation (e.g. +
, .
, ^
etc.)
<?php
echo 5 . false;
false
does not make sense in these operations