Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 129 Bytes

MissingClosureReturnType.md

File metadata and controls

11 lines (8 loc) · 129 Bytes

MissingClosureReturnType

Emitted when a closure lacks a return type

<?php

$a = function() {
    return "foo";
};