Issues (1272)

module/Migration/config/module.config.php (1 issue)

Labels
Severity
1
<?php
2
3
declare(strict_types=1);
4
5
use Applications\Service\UploadHandler;
6
use Symfony\Component\Console\Output\ConsoleOutput;
7
use Symfony\Component\Console\Output\OutputInterface;
8
use Yawik\Migration\Controller\ConsoleController;
9
use Yawik\Migration\Handler\MigrationHandler;
10
use Yawik\Migration\Migrator\Version36 as Migrator36;
11
use Yawik\Migration\Migrator\Version36\UserImageProcessor;
0 ignored issues
show
The type Yawik\Migration\Migrator...on36\UserImageProcessor 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...
12
13
return [
14
    'doctrine' => [
15
        'driver' => [
16
            'odm_default' => [
17
                'drivers' => [
18
                    'Yawik\Migration\Entity' => 'annotation',
19
                ],
20
            ],
21
            'annotation' => [
22
                'paths' => [ __DIR__ . '/../src/Entity'],
23
            ],
24
        ]
25
    ],
26
    'controllers' => [
27
        'factories' => [
28
            'Migration/Console' => [ConsoleController::class, 'factory']
29
        ]
30
    ],
31
    'service_manager' => [
32
        'factories' => [
33
            Migrator36::class => [Migrator36::class, 'factory'],
34
            MigrationHandler::class => [MigrationHandler::class, 'factory'],
35
            OutputInterface::class => function(){
36
                return new ConsoleOutput();
37
            }
38
        ]
39
    ]
40
];