ModelSettingsServiceProvider   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 19
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 19
ccs 9
cts 9
cp 1
rs 10
wmc 3

2 Methods

Rating   Name   Duplication   Size   Complexity  
A register() 0 3 1
A boot() 0 11 2
1
<?php
2
3
namespace Glorand\Model\Settings;
4
5
use Glorand\Model\Settings\Console\CreateSettingsFieldForModel;
6
use Glorand\Model\Settings\Console\CreateSettingsTable;
7
use Illuminate\Support\ServiceProvider;
8
9
class ModelSettingsServiceProvider extends ServiceProvider
10
{
11 234
    public function boot()
12
    {
13 234
        if ($this->app->runningInConsole()) {
14 234
            $this->commands([
15 234
                CreateSettingsFieldForModel::class,
16
                CreateSettingsTable::class,
17
            ]);
18
        }
19
20 234
        $this->publishes([
21 234
            __DIR__ . '/../config/model_settings.php' => config_path('model_settings.php'),
22
        ]);
23 234
    }
24
25 234
    public function register()
26
    {
27 234
        $this->mergeConfigFrom(__DIR__ . '/../config/model_settings.php', 'model_settings');
28 234
    }
29
}
30