1 | <?php |
||
5 | class MakeNewBundleFile extends LaravelLangBundlerCommand |
||
6 | { |
||
7 | /** |
||
8 | * The name and signature of the console command. |
||
9 | * |
||
10 | * @var string |
||
11 | */ |
||
12 | protected $signature = 'langb:new {path}'; |
||
13 | |||
14 | /** |
||
15 | * The console command description. |
||
16 | * |
||
17 | * @var string |
||
18 | */ |
||
19 | protected $description = 'Make a new empty bundle file.'; |
||
20 | |||
21 | /** |
||
22 | * Execute the console command. |
||
23 | */ |
||
24 | public function handle() |
||
42 | |||
43 | /** |
||
44 | * Create file from stub. |
||
45 | * |
||
46 | * @param string $path |
||
47 | * @param string $filename |
||
48 | */ |
||
49 | protected function createFile($path, $filename) |
||
59 | } |
||
60 |