SweepCommand   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 29
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 5
c 0
b 0
f 0
dl 0
loc 29
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A handle() 0 3 1
1
<?php
2
3
namespace TopviewDigital\TranslationHelper\Console;
4
5
use Illuminate\Console\Command;
6
7
class SweepCommand extends Command
8
{
9
    /**
10
     * The console command name.
11
     *
12
     * @var string
13
     */
14
    protected $signature = 'trans-helper:sweep';
15
    /**
16
     * The console command description.
17
     *
18
     * @var string
19
     */
20
    protected $description = 'Verfiy existing the translation terms, remove unused cited or terms';
21
    /**
22
     * Install directory.
23
     *
24
     * @var string
25
     */
26
    protected $directory = '';
27
28
    /**
29
     * Execute the console command.
30
     *
31
     * @return void
32
     */
33
    public function handle()
34
    {
35
        sweep();
36
    }
37
}
38