1 | <?php |
||
5 | class MakeBundlesFolder extends LaravelLangBundlerCommand |
||
6 | { |
||
7 | /** |
||
8 | * The name and signature of the console command. |
||
9 | * |
||
10 | * @var string |
||
11 | */ |
||
12 | protected $signature = 'langb:start'; |
||
13 | |||
14 | /** |
||
15 | * The console command description. |
||
16 | * |
||
17 | * @var string |
||
18 | */ |
||
19 | protected $description = 'Get started by making a bundles directory.'; |
||
20 | |||
21 | /** |
||
22 | * Execute the console command. |
||
23 | */ |
||
24 | public function handle() |
||
36 | } |
||
37 |