Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 156 Bytes

MixedArgument.md

File metadata and controls

10 lines (7 loc) · 156 Bytes

MixedArgument

Emitted when Psalm cannot determine the type of an argument

<?php

function takesInt(int $i) : void {}
takesInt($_GET['foo']);