1 | <?php |
||
8 | class ConsoleGenerate extends YarakCommand |
||
9 | { |
||
10 | /** |
||
11 | * The command signature. |
||
12 | * |
||
13 | * @var string |
||
14 | */ |
||
15 | protected $signature = 'console:generate'; |
||
16 | |||
17 | /** |
||
18 | * The command description. |
||
19 | * |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $description = 'Generate the console directory structure.'; |
||
23 | |||
24 | /** |
||
25 | * Handle the command. |
||
26 | */ |
||
27 | protected function handle() |
||
35 | } |
||
36 |