Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 171 Bytes

MissingClosureParamType.md

File metadata and controls

11 lines (8 loc) · 171 Bytes

MissingClosureParamType

Emitted when a closure parameter has no type information associated with it

<?php

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