GhostServiceProvider   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 51
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 8
c 1
b 0
f 0
dl 0
loc 51
ccs 9
cts 9
cp 1
rs 10
wmc 3

2 Methods

Rating   Name   Duplication   Size   Complexity  
A register() 0 8 1
A boot() 0 14 2
1
<?php
2
3
namespace Igorsgm\Ghost;
4
5
use Illuminate\Support\ServiceProvider;
6
7
class GhostServiceProvider extends ServiceProvider
8
{
9
    /**
10
     * Bootstrap the application services.
11
     */
12 137
    public function boot()
13
    {
14
        /*
15
         * Optional methods to load your package assets
16
         */
17
        // $this->loadTranslationsFrom(__DIR__.'/../resources/lang', 'laravel-ghost');
18
        // $this->loadViewsFrom(__DIR__.'/../resources/views', 'laravel-ghost');
19
        // $this->loadMigrationsFrom(__DIR__.'/../database/migrations');
20
        // $this->loadRoutesFrom(__DIR__.'/routes.php');
21
22 137
        if ($this->app->runningInConsole()) {
23 137
            $this->publishes([
24 137
                __DIR__.'/../config/ghost.php' => config_path('ghost.php'),
25 137
            ], 'config');
26
27
            // Publishing the views.
28
            /*$this->publishes([
29
                __DIR__.'/../resources/views' => resource_path('views/vendor/laravel-ghost'),
30
            ], 'views');*/
31
32
            // Publishing assets.
33
            /*$this->publishes([
34
                __DIR__.'/../resources/assets' => public_path('vendor/laravel-ghost'),
35
            ], 'assets');*/
36
37
            // Publishing the translation files.
38
            /*$this->publishes([
39
                __DIR__.'/../resources/lang' => resource_path('lang/vendor/laravel-ghost'),
40
            ], 'lang');*/
41
42
            // Registering package commands.
43
            // $this->commands([]);
44
        }
45
    }
46
47
    /**
48
     * Register the application services.
49
     */
50 137
    public function register()
51
    {
52
        // Automatically apply the package configuration
53 137
        $this->mergeConfigFrom(__DIR__.'/../config/ghost.php', 'ghost');
54
55
        // Register the main class to use with the facade
56 137
        $this->app->singleton('laravel-ghost', function () {
57 137
            return new Ghost;
58 137
        });
59
    }
60
}
61