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