/home/techb158/immovalet.com/vendor/botble/theme/src/Commands
Edit: /home/techb158/immovalet.com/vendor/botble/theme/src/Commands/ThemeRemoveCommand.php (1690B)
themeService = $themeService;
}
/**
* Execute the console command.
*
* @return bool
*/
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;
}
$result = $this->themeService->remove($this->getTheme());
if ($result['error']) {
$this->error($result['message']);
return 1;
}
$this->info($result['message']);
return 0;
}
}