/home/techb158/immovalet.com/platform/packages/theme/src/Commands
Edit: /home/techb158/immovalet.com/platform/packages/theme/src/Commands/ThemeAssetsRemoveCommand.php (1476B)
themeService = $themeService;
}
/**
* Execute the console command.
*
* @return bool
*/
public function handle()
{
if (!preg_match('/^[a-z0-9\-]+$/i', $this->argument('name'))) {
$this->error('Only alphabetic characters are allowed.');
return 1;
}
$result = $this->themeService->removeAssets($this->getTheme());
if ($result['error']) {
$this->error($result['message']);
return 1;
}
$this->info($result['message']);
return 0;
}
}