| 1 | <?php |
||
| 8 | class Persister extends Command |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * The name and signature of the console command. |
||
| 12 | * |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | protected $signature = 'satis:persister:unlock'; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * The console command description. |
||
| 19 | * |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | protected $description = 'Forcefully unlocks UI.'; |
||
| 23 | |||
| 24 | /** @var ConfigPersister $configPersister */ |
||
| 25 | protected $configPersister; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Create a new command instance. |
||
| 29 | * |
||
| 30 | * @param \App\Satis\ConfigPersister $configPersister |
||
| 31 | * @internal param \Illuminate\Filesystem\Filesystem $filesystem |
||
| 32 | */ |
||
| 33 | public function __construct(ConfigPersister $configPersister) { |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Execute the console command. |
||
| 41 | * |
||
| 42 | * @return void |
||
| 43 | */ |
||
| 44 | public function handle() { |
||
| 49 | } |
||
| 50 |