Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 157 Bytes

MixedInferredReturnType.md

File metadata and controls

11 lines (8 loc) · 157 Bytes

MixedInferredReturnType

Emitted when Psalm cannot determine a function's return type

<?php

function foo() : int {
    return $_GET['foo'];
}