These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
1 | <?php |
||
2 | |||
3 | return function ($context = [], $hat = null) { |
||
4 | $fn = function () { |
||
5 | return $this; |
||
6 | }; |
||
7 | |||
8 | return $fn(); |
||
9 | }; |
||
10 | |||
11 | function ($context) { |
||
12 | if (empty($context['items'])) { |
||
13 | echo '<p>There are no items!!!</p>'; |
||
14 | } |
||
15 | } |
||
16 | |||
0 ignored issues
–
show
Bug
introduced
by
![]() |