Test Setup Failed
Pull Request — master (#150)
by Nick
14:47 queued 06:28
created

AppServiceProvider::boot()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 1
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 0
c 1
b 0
f 0
dl 0
loc 2
ccs 1
cts 1
cp 1
rs 10
cc 1
nc 1
nop 0
crap 1
1
<?php
2
/**
3
 * App Service Provider.
4
 *
5
 * @package App\Providers
6
 *
7
 * @author    Taylor Otwell <[email protected]>
8
 * @copyright 2018-2020 Nick Menke
9
 *
10
 * @link https://github.com/nlmenke/vertebrae
11
 */
12
13
declare(strict_types=1);
14
15
namespace App\Providers;
16
17
use Illuminate\Support\ServiceProvider;
18
19
/**
20
 * The Application service provider.
21
 *
22
 * This service provider is responsible for bootstrapping and registering the
23
 * application's core services.
24
 *
25
 * @since 0.0.0-framework introduced
26
 */
27
class AppServiceProvider extends ServiceProvider
28
{
29
    /**
30
     * Bootstrap any application services.
31
     *
32
     * @return void
33
     */
34 33
    public function boot(): void
35
    {
36 33
    }
37
38
    /**
39
     * Register any application services.
40
     *
41
     * @return void
42
     */
43 33
    public function register(): void
44
    {
45 33
    }
46
}
47