Test Failed
Push — main ( 1c332b...049a5b )
by Fractal
02:55
created

index.php (1 issue)

Labels
Severity
1
<?php
2
3
declare(strict_types=1);
4
5
use FRZB\Component\RequestMapper\Converter\RequestConverter;
6
use FRZB\Component\RequestMapper\Tests\Stub\Kernel;
0 ignored issues
show
The type FRZB\Component\RequestMapper\Tests\Stub\Kernel was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
7
8
require __DIR__.'/vendor/autoload.php';
9
10
$kernel = new Kernel('dev', true);
11
12
$kernel->boot();
13
14
15
16
$kernel->getContainer()->get(RequestConverter::class)->convert();
17