Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 163 Bytes

LessSpecificReturnType.md

File metadata and controls

11 lines (8 loc) · 163 Bytes

LessSpecificReturnType

Emitted when a return type covers more possibilities than the function itself

<?php

function foo() : ?int {
    return 5;
}