Completed
Push — master ( f2a463...1bdead )
by Dmitrij
9s
created

commands.php (1 issue)

Labels
Severity
1
<?php
2
3
return [
4
    'module:create' => HotRodCli\Commands\Module\CreateCommand::class,
5
    'create:helper' => HotRodCli\Commands\Classes\CreateHelperCommand::class,
6
    'create:controller' => HotRodCli\Commands\Classes\CreateControllerCommand::class,
7
    'create:block' => HotRodCli\Commands\Classes\CreateBlockCommand::class,
8
    'create:route' => HotRodCli\Commands\Xml\CreateRouteCommand::class,
9
    'create:layout' => HotRodCli\Commands\Xml\CreateLayoutCommand::class,
10
    'create:install-schema' => HotRodCli\Commands\Classes\CreateInstallSchemaCommand::class,
11
    'create:upgrade-schema' => HotRodCli\Commands\Classes\CreateUpgradeSchemaCommand::class,
12
    'create:install-data' => HotRodCli\Commands\Classes\CreateInstallDataCommand::class,
13
    'create:upgrade-data' => HotRodCli\Commands\Classes\CreateUpgradeDataCommand::class,
14
    'create:template' => HotRodCli\Commands\Frontend\CreateTemplateCommand::class,
15
    'create:resource-model' => HotRodCli\Commands\Classes\CreateResourceModelCommand::class,
16
    'create:model' => HotRodCli\Commands\Classes\CreateModelCommand::class,
17
    'create:collection' => HotRodCli\Commands\Classes\CreateCollectionCommand::class,
18
    'create:preference' => HotRodCli\Commands\Xml\CreatePreferenceCommand::class,
19
    'create:observer' => HotRodCli\Commands\Classes\CreateObserverCommand::class,
20
    'create:repository' => HotRodCli\Commands\Classes\CreateRepositoryCommand::class,
21
    'create:requirejs-config' => HotRodCli\Commands\Frontend\CreateRequireJsCommand::class,
22
    'create:js-script' => \HotRodCli\Commands\Frontend\CreateScriptCommand::class,
23
    'create:js-widget' => \HotRodCli\Commands\Frontend\CreateJsWidgetCommand::class,
0 ignored issues
show
The type HotRodCli\Commands\Frontend\CreateJsWidgetCommand 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
    'psr:fix' => HotRodCli\Commands\Common\PSRFixCommand::class,
25
];
26