Completed
Push — master ( aebb60...558ce3 )
by Todd
12s
created
Labels
Severity

Upgrade to new PHP Analysis Engine

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
This code did not parse for me. Apparently, there is an error somewhere around this line:

Syntax error, unexpected EOF
Loading history...