Passed
Push — master ( 34c940...25e2cf )
by Peter
02:27
created

abter.php (7 issues)

Labels
Severity
1
<?php
2
3
use AbterPhp\Admin\Constant\Event as AdminEvent;
4
use AbterPhp\Framework\Constant\Event;
5
use AbterPhp\Framework\Constant\Module;
6
use AbterPhp\PropellerAdmin;
7
8
return [
9
    Module::IDENTIFIER         => 'AbterPhp\PropellerAdmin',
10
    Module::DEPENDENCIES       => ['AbterPhp\Admin'],
11
    Module::ENABLED            => true,
12
    Module::HTTP_BOOTSTRAPPERS => [
13
        Bootstrappers\Events\ListenersBootstrapper::class,
0 ignored issues
show
The type Bootstrappers\Events\ListenersBootstrapper 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...
14
        Bootstrappers\Html\Component\ButtonFactoryBootstrapper::class,
0 ignored issues
show
The type Bootstrappers\Html\Compo...ttonFactoryBootstrapper 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...
15
    ],
16
    Module::EVENTS             => [
17
        Event::NAVIGATION_READY => [
18
            /** @see \AbterPhp\PropellerAdmin\Events\Listeners\NavigationBuilder::handle */
19
            sprintf('%s@handle', Events\Listeners\NavigationBuilder::class),
0 ignored issues
show
The type Events\Listeners\NavigationBuilder 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...
20
        ],
21
        Event::FORM_READY       => [
22
            /** @see \AbterPhp\PropellerAdmin\Events\Listeners\FormDecorator::handle */
23
            sprintf('%s@handle', Events\Listeners\FormDecorator::class),
0 ignored issues
show
The type Events\Listeners\FormDecorator 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...
24
        ],
25
        Event::GRID_READY       => [
26
            /** @see \AbterPhp\PropellerAdmin\Events\Listeners\GridDecorator::handle */
27
            sprintf('%s@handle', Events\Listeners\GridDecorator::class),
0 ignored issues
show
The type Events\Listeners\GridDecorator 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
        ],
29
        AdminEvent::ADMIN_READY => [
30
            /** @see \AbterPhp\PropellerAdmin\Events\Listeners\AdminDecorator::handle */
31
            sprintf('%s@handle', Events\Listeners\AdminDecorator::class),
0 ignored issues
show
The type Events\Listeners\AdminDecorator 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...
32
        ],
33
        AdminEvent::LOGIN_READY => [
34
            /** @see \AbterPhp\PropellerAdmin\Events\Listeners\LoginDecorator::handle */
35
            sprintf('%s@handle', Events\Listeners\LoginDecorator::class),
0 ignored issues
show
The type Events\Listeners\LoginDecorator 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
        ],
37
    ],
38
];
39