/home/techb158/immovalet.com/vendor/botble/plugin-management/src/Commands
Edit: /home/techb158/immovalet.com/vendor/botble/plugin-management/src/Commands/PluginRemoveCommand.php (1651B)
pluginService = $pluginService;
}
/**
* Execute the console command.
*/
public function handle()
{
if (!$this->confirmToProceed('Are you sure you want to permanently delete?', true)) {
return 1;
}
if (!preg_match('/^[a-z0-9\-]+$/i', $this->argument('name'))) {
$this->error('Only alphabetic characters are allowed.');
return 1;
}
$plugin = strtolower($this->argument('name'));
$result = $this->pluginService->remove($plugin);
if ($result['error']) {
$this->error($result['message']);
return 1;
}
$this->info($result['message']);
return 0;
}
}