TailwindCssServiceProvider   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 16
rs 10
c 0
b 0
f 0
wmc 3

2 Methods

Rating   Name   Duplication   Size   Complexity  
A boot() 0 6 2
A register() 0 2 1
1
<?php namespace Cloudtux\TailwindCss;
2
3
use Illuminate\Support\ServiceProvider;
4
5
class TailwindCssServiceProvider extends ServiceProvider
6
{
7
8
    public function boot()
9
    {
10
11
        if ($this->app->runningInConsole()) {
12
            $this->commands([
13
                                \Cloudtux\TailwindCss\console\InstallTailwindCss::class
14
                            ]);
15
        }
16
17
    }
18
19
    public function register()
20
    {
21
22
    }
23
}
24