Total Complexity | 2 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class MakeCommand extends Command |
||
11 | { |
||
12 | /** |
||
13 | * The console command name. |
||
14 | * |
||
15 | * @var string |
||
16 | */ |
||
17 | protected $name = 'lgp:make'; |
||
18 | /** |
||
19 | * The console command description. |
||
20 | * |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $description = 'Generator the composer package from config file laravel-generator-package'; |
||
24 | |||
25 | /** |
||
26 | * @var Composer |
||
27 | */ |
||
28 | public Composer $composer; |
||
29 | |||
30 | /** |
||
31 | * Create a new command instance. |
||
32 | */ |
||
33 | 1 | public function __construct() |
|
34 | { |
||
35 | 1 | parent::__construct(); |
|
36 | 1 | } |
|
37 | |||
38 | /** |
||
39 | * Execute the command. |
||
40 | * |
||
41 | * @return mixed |
||
42 | */ |
||
43 | 1 | public function handle() |
|
46 | } |
||
47 | } |
||
48 |