Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 0 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 2 |
1 | <?php |
||
27 | public function __construct( |
||
28 | /** |
||
29 | * Element to be used in some context. |
||
30 | * |
||
31 | * @phpstan-var X |
||
32 | * @var mixed |
||
33 | */ |
||
34 | private mixed $subject, |
||
35 | |||
36 | /** |
||
37 | * way of combining element and context. |
||
38 | * |
||
39 | * @phpstan-var Closure(X, Closure(X): mixed): Y |
||
40 | * @var Closure |
||
41 | */ |
||
42 | private Closure $usage |
||
43 | ) { |
||
44 | } |
||
54 |