Issues (42)

src/Providers/EventServiceProvider.php (5 issues)

Labels
Severity
1
<?php
2
3
namespace FaithGen\Sermons\Providers;
4
5
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
6
7
class EventServiceProvider extends ServiceProvider
8
{
9
    protected $listen = [
10
        \FaithGen\Sermons\Events\Created::class => [
0 ignored issues
show
The type FaithGen\Sermons\Events\Created 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...
11
            \FaithGen\Sermons\Listeners\Created\UploadImage::class,
0 ignored issues
show
The type FaithGen\Sermons\Listeners\Created\UploadImage 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
            \FaithGen\Sermons\Listeners\Created\ProcessImage::class,
0 ignored issues
show
The type FaithGen\Sermons\Listeners\Created\ProcessImage 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...
13
            \FaithGen\Sermons\Listeners\Created\MessageFollowUsers::class,
0 ignored issues
show
The type FaithGen\Sermons\Listene...ated\MessageFollowUsers 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
            \FaithGen\Sermons\Listeners\Created\S3Upload::class,
0 ignored issues
show
The type FaithGen\Sermons\Listeners\Created\S3Upload 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
    ];
17
18
    /**
19
     * Bootstrap services.
20
     *
21
     * @return void
22
     */
23
    public function boot()
24
    {
25
        parent::boot();
26
    }
27
28
    /**
29
     * Register services.
30
     *
31
     * @return void
32
     */
33
    public function register()
34
    {
35
        //
36
    }
37
}
38