Test Setup Failed
Push — develop ( 67f164...d5fe8d )
by Elvis Henrique
03:02
created

config.php (1 issue)

Labels
Severity
1
<?php
2
/**
3
 * Config.
4
 *
5
 * Define configurations for this plugin,
6
 * use it for define your service providers and hooks providers,
7
 * the classes will be loaded in order as defined.
8
 *
9
 * @package App
10
 */
11
12
return [
13
	'service_providers' => [
14
		WPSteak\Services\Meta\ServiceProvider::class,
0 ignored issues
show
The type WPSteak\Services\Meta\ServiceProvider 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
	'hook_providers'    => [
17
		App\Providers\Assets::class,
18
		App\Providers\Example\PostMeta::class,
19
		App\Providers\Example\PostType::class,
20
	],
21
];
22