Completed
Push — master ( 66b974...89c512 )
by Ross
13s queued 10s
created

HandlerMapping/php8_handlers.php (1 issue)

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
namespace League\Tactician\Bundle\Tests\DependencyInjection\HandlerMapping;
4
5
class UnionTypeHandler
6
{
7
    public function handle(int|bool $foo)
0 ignored issues
show
This code did not parse for me. Apparently, there is an error somewhere around this line:

Syntax error, unexpected '|', expecting T_VARIABLE
Loading history...
8
    {
9
    }
10
}
11