Total Complexity | 1 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
6 | class AssetsConsole extends Command |
||
7 | { |
||
8 | /** |
||
9 | * The name and signature of the console command. |
||
10 | * |
||
11 | * @var string |
||
12 | */ |
||
13 | protected $signature = 'postman:assets'; |
||
14 | |||
15 | /** |
||
16 | * The console command description. |
||
17 | * |
||
18 | * @var string |
||
19 | */ |
||
20 | protected $description = 'Re-publish the postman assets'; |
||
21 | |||
22 | /** |
||
23 | * Execute the console command. |
||
24 | * |
||
25 | * @return mixed |
||
26 | */ |
||
27 | 1 | public function handle() : void |
|
34 | } |