Completed
Push — master ( e3f9e4...97c313 )
by Jeroen
03:32
created

DogServiceProvider   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A boot() 0 6 1
A register() 0 4 1
1
<?php
2
namespace Jeroenherczeg\Dog;
3
4
use Illuminate\Support\ServiceProvider;
5
6
class DogServiceProvider extends ServiceProvider
7
{
8
    /**
9
     * Bootstrap the application services.
10
     *
11
     * @return void
12
     */
13
    public function boot()
14
    {
15
        $this->publishes([
16
            __DIR__ . '/create_followers_table.php' => database_path('migrations/2016_08_15_000000_create_followers_table.php')
17
        ], 'test');
18
    }
19
20
    /**
21
     * Register the application services.
22
     *
23
     * @return void
24
     */
25
    public function register()
26
    {
27
        //
28
    }
29
}
30