1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-02 17:52:45 +01:00
psalm/docs/running_psalm/issues/MixedOperand.md

26 lines
343 B
Markdown
Raw Normal View History

2020-03-19 17:32:49 +01:00
# MixedOperand
Emitted when Psalm cannot infer a type for an operand in any calculated expression
```php
2020-03-21 00:13:46 +01:00
<?php
2022-09-10 13:06:17 +02:00
echo $GLOBALS['foo'] + "hello";
2020-03-19 17:32:49 +01:00
```
2020-11-08 20:41:08 +01:00
## Why its bad
Mixed operands can have fatal consequences, e.g. here:
```php
<?php
function foo(mixed $m) {
echo $m . 'bar';
}
class A {}
foo(new A()); // triggers fatal error
```