1 | <?php namespace Arcanesoft\Pages\Console; |
||
11 | class SetupCommand extends Command |
||
12 | { |
||
13 | /* ------------------------------------------------------------------------------------------------ |
||
14 | | Properties |
||
15 | | ------------------------------------------------------------------------------------------------ |
||
16 | */ |
||
17 | /** |
||
18 | * The name and signature of the console command. |
||
19 | * |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $signature = 'pages:setup'; |
||
23 | |||
24 | /** |
||
25 | * The console command description. |
||
26 | * |
||
27 | * @var string |
||
28 | */ |
||
29 | protected $description = 'Setup the Pages module.'; |
||
30 | |||
31 | /* ------------------------------------------------------------------------------------------------ |
||
32 | | Main Functions |
||
33 | | ------------------------------------------------------------------------------------------------ |
||
34 | */ |
||
35 | /** |
||
36 | * Execute the console command. |
||
37 | */ |
||
38 | public function handle() |
||
42 | |||
43 | /* ------------------------------------------------------------------------------------------------ |
||
44 | | Other Functions |
||
45 | | ------------------------------------------------------------------------------------------------ |
||
46 | */ |
||
47 | /** |
||
48 | * Run the Auth database seeder. |
||
49 | */ |
||
50 | private function runSeeders() |
||
56 | } |
||
57 |