1 | <?php |
||
9 | class MakeConfig extends Command |
||
10 | { |
||
11 | /** |
||
12 | * The name and signature of the console command. |
||
13 | * |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $signature = 'satis:make:config'; |
||
17 | |||
18 | /** |
||
19 | * The console command description. |
||
20 | * |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $description = 'Mannualy creates config mirrors.'; |
||
24 | |||
25 | /** @var ConfigManager $configManager */ |
||
26 | protected $configManager; |
||
27 | |||
28 | /** @var ConfigPersister $configPersister */ |
||
29 | protected $configPersister; |
||
30 | |||
31 | /** |
||
32 | * Create a new command instance. |
||
33 | * |
||
34 | * @param ConfigManager $configManager |
||
35 | * @internal param \Illuminate\Filesystem\Filesystem $filesystem |
||
36 | */ |
||
37 | public function __construct(ConfigManager $configManager) { |
||
42 | |||
43 | /** |
||
44 | * Execute the console command. |
||
45 | * |
||
46 | * @return void |
||
47 | */ |
||
48 | public function handle() { |
||
55 | } |
||
56 |