Total Complexity | 1 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class PublishCommand extends Command |
||
8 | { |
||
9 | /** |
||
10 | * The console command description. |
||
11 | * |
||
12 | * @var string |
||
13 | */ |
||
14 | protected $description = 'Publish all of the blog\'s resources'; |
||
15 | /** |
||
16 | * The name and signature of the console command. |
||
17 | * |
||
18 | * @var string |
||
19 | */ |
||
20 | protected $signature = 'blog:publish'; |
||
21 | |||
22 | /** |
||
23 | * Execute the console command. |
||
24 | */ |
||
25 | public function handle() |
||
33 |