Failed Conditions
Push — master ( a427b2...509ea4 )
by Adrien
16:44
created

config/autoload/dependencies.global.php (7 issues)

Labels
Severity
1
<?php
2
3
declare(strict_types=1);
4
5
return [
6
    // Provides application-wide services.
7
    // We recommend using fully-qualified class names whenever possible as
8
    // service names.
9
    'dependencies' => [
10
        // Use 'aliases' to alias a service name to another service. The
11
        // key is the alias name, the value is the service to which it points.
12
        'aliases' => [
13
            \Doctrine\ORM\EntityManager::class => 'doctrine.entity_manager.orm_default',
14
        ],
15
        // Use 'invokables' for constructor-less services, or services that do
16
        // not require arguments to the constructor. Map a service name to the
17
        // class name.
18
        'invokables' => [
19
            \Doctrine\ORM\Mapping\UnderscoreNamingStrategy::class => \Doctrine\ORM\Mapping\UnderscoreNamingStrategy::class,
20
        ],
21
        // Use 'factories' for services provided by callbacks/factory classes.
22
        'factories' => [
23
            'doctrine.entity_manager.orm_default' => \Application\ORM\EntityManagerFactory::class,
24
            \Doctrine\Migrations\Configuration\Migration\ConfigurationLoader::class => \Roave\PsrContainerDoctrine\Migrations\ConfigurationLoaderFactory::class,
25
            \Doctrine\Migrations\DependencyFactory::class => \Roave\PsrContainerDoctrine\Migrations\DependencyFactoryFactory::class,
26
            \Application\Handler\AccountingDocumentHandler::class => \Application\Handler\AccountingDocumentFactory::class,
1 ignored issue
show
The type Application\Handler\AccountingDocumentHandler 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...
27
            \Application\Handler\DatatransHandler::class => \Application\Handler\DatatransFactory::class,
1 ignored issue
show
The type Application\Handler\DatatransHandler 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...
28
            \Application\Middleware\AuthenticationMiddleware::class => \Application\Middleware\AuthenticationFactory::class,
1 ignored issue
show
The type Application\Middleware\AuthenticationMiddleware 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...
29
            \Application\Service\Accounting::class => \Application\Service\AccountingFactory::class,
30
            \Application\Service\Exporter\AccountingReport::class => \Application\Service\Exporter\AccountingReportFactory::class,
31
            \Application\Service\Exporter\TransactionLines::class => \Application\Service\Exporter\TransactionLinesFactory::class,
32
            \Application\Service\Invoicer::class => \Application\Service\InvoicerFactory::class,
33
            \Application\Service\MessageQueuer::class => \Application\Service\MessageQueuerFactory::class,
34
            \Ecodev\Felix\Handler\GraphQLHandler::class => \Application\Handler\GraphQLFactory::class,
1 ignored issue
show
The type Ecodev\Felix\Handler\GraphQLHandler 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...
35
            \Ecodev\Felix\Handler\ImageHandler::class => \Application\Handler\ImageFactory::class,
1 ignored issue
show
The type Ecodev\Felix\Handler\ImageHandler 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...
36
            \Ecodev\Felix\Log\Writer\Db::class => \Application\Log\DbWriterFactory::class,
1 ignored issue
show
The type Ecodev\Felix\Log\Writer\Db 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...
37
            \Ecodev\Felix\Service\Mailer::class => \Application\Service\MailerFactory::class,
1 ignored issue
show
The type Ecodev\Felix\Service\Mailer 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...
38
            \GraphQL\Doctrine\Types::class => \Application\Api\TypesFactory::class,
39
        ],
40
    ],
41
];
42