Completed
Push — master ( 89313f...8b5ee1 )
by Nassif
02:33
created

Setup   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 11
ccs 3
cts 3
cp 1
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A handle() 0 4 1
1
<?php
2
3
namespace Nikaia\TranslationSheet\Commands;
4
5
use Illuminate\Console\Command;
6
7
class Setup extends Command
8
{
9
    protected $signature = 'translation_sheet:setup';
10
11
    protected $description = 'Setup spreadsheet and get it ready to host translations';
12
13 1
    public function handle(\Nikaia\TranslationSheet\Setup $setup)
14
    {
15 1
        $setup->withOutput($this->output)->run();
16 1
    }
17
}
18