WebHookServiceProvider   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 30
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 2
Bugs 1 Features 0
Metric Value
wmc 3
eloc 2
c 2
b 1
f 0
dl 0
loc 30
ccs 0
cts 5
cp 0
rs 10

3 Methods

Rating   Name   Duplication   Size   Complexity  
A register() 0 2 1
A provides() 0 3 1
A boot() 0 2 1
1
<?php
2
3
namespace Joesama\Webhook\Providers;
4
5
use Illuminate\Support\ServiceProvider;
6
7
class WebHookServiceProvider extends ServiceProvider
8
{
9
    /**
10
     * Register services.
11
     *
12
     * @return void
13
     */
14
    public function register()
15
    {
16
        //
17
    }
18
19
    /**
20
     * Bootstrap services.
21
     *
22
     * @return void
23
     */
24
    public function boot()
25
    {
26
        //
27
    }
28
29
    /**
30
     * Get the services provided by the provider.
31
     *
32
     * @return array
33
     */
34
    public function provides()
35
    {
36
        return [];
37
    }
38
}
39