1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 04:45:20 +01:00
psalm/docs/running_psalm/issues/MixedOperand.md
2022-09-15 19:38:51 +02:00

343 B
Raw Blame History

MixedOperand

Emitted when Psalm cannot infer a type for an operand in any calculated expression

<?php

echo $GLOBALS['foo'] + "hello";

Why its bad

Mixed operands can have fatal consequences, e.g. here:

<?php

function foo(mixed $m) {
    echo $m . 'bar';
}

class A {}

foo(new A()); // triggers fatal error