Completed
Push — master ( 6d41ca...2bcfec )
by
unknown
07:51 queued 10s
created

AdminLteUpdateCommand   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A handle() 0 6 1
1
<?php
2
3
namespace JeroenNoten\LaravelAdminLte\Console;
4
5
use Illuminate\Console\Command;
6
7
class AdminLteUpdateCommand extends Command
8
{
9
    protected $signature = 'adminlte:update ';
10
11
    protected $description = 'Updated the all the required assets for AdminLTE';
12
13
    /**
14
     * Execute the console command.
15
     *
16
     * @return void
17
     */
18
    public function handle()
19
    {
20
        $this->call('adminlte:install', [
21
            '--force' => true, '--only' => 'assets',
22
        ]);
23
    }
24
}
25