Completed
Push — master ( f89d9f...ca4d83 )
by Mahmoud
03:00
created

FoundationServiceProvider   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 20
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 2
c 0
b 0
f 0
lcom 0
cbo 1
dl 0
loc 20
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A boot() 0 4 1
A register() 0 4 1
1
<?php
2
3
namespace App\Port\Foundation\Providers;
4
5
use App\Port\Provider\Abstracts\ServiceProviderAbstract;
6
7
/**
8
 * Class FoundationServiceProvider
9
 *
10
 * @author  Mahmoud Zalt  <[email protected]>
11
 */
12
class FoundationServiceProvider extends ServiceProviderAbstract
13
{
14
15
    /**
16
     * Perform post-registration booting of services.
17
     */
18
    public function boot()
19
    {
20
21
    }
22
23
    /**
24
     * Register bindings in the container.
25
     */
26
    public function register()
27
    {
28
29
    }
30
31
}
32