Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 407 Bytes

InvalidScalarArgument.md

File metadata and controls

18 lines (13 loc) · 407 Bytes

InvalidScalarArgument

Emitted when a scalar value is passed to a method that expected another scalar type.

This is only emitted in situations where Psalm can be sure that PHP tries to coerce one scalar type to another.

In all other cases InvalidArgument is emitted.

<?php

function foo(int $i) : void {}
function bar(string $s) : void {
    if (is_numeric($s)) {
        foo($s);
    }
}