# FalseOperand
Emitted when using `false` as part of an operation (e.g. `+`, `.`, `^` etc.)
```php
<?php
echo false . 'hello';
```