FalseOperand
August 8, 2020 ยท View on GitHub
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
August 8, 2020 ยท View on GitHub
Emitted when using false as part of an operation (e.g. +, ., ^ etc.)
<?php
echo 5 . false;
false does not make sense in these operations