Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 340 Bytes

MixedOperand.md

File metadata and controls

25 lines (16 loc) · 340 Bytes

MixedOperand

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

<?php

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

Why it’s 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