Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 216 Bytes

MissingReturnType.md

File metadata and controls

21 lines (15 loc) · 216 Bytes

MissingReturnType

Emitted when a function doesn't have a return type defined

<?php

function foo() {
    return "foo";
}

Correct with:

<?php

function foo() : string {
    return "foo";
}