Completed
Push — master ( cf731b...184560 )
by ARCANEDEV
17s queued 11s
created

ServiceProvider::bind()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 3
dl 0
loc 4
ccs 0
cts 3
cp 0
crap 2
rs 10
c 0
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Arcanedev\Support\Providers;
6
7
use Arcanedev\Support\Providers\Concerns\InteractsWithApplication;
8
use Illuminate\Support\ServiceProvider as IlluminateServiceProvider;
9
10
/**
11
 * Class     ServiceProvider
12
 *
13
 * @package  Arcanedev\Support\Providers
14
 * @author   ARCANEDEV <[email protected]>
15
 */
16
abstract class ServiceProvider extends IlluminateServiceProvider
17
{
18
    /* -----------------------------------------------------------------
19
     |  Traits
20
     | -----------------------------------------------------------------
21
     */
22
23
    use InteractsWithApplication;
24
}
25