/home/techb158/immovalet.com/vendor/botble/theme/src/Commands
NameSizeModeActions
Traits/-0755rm
ThemeActivateCommand.php15320644editdlrm
ThemeAssetsPublishCommand.php17450644editdlrm
ThemeAssetsRemoveCommand.php14760644editdlrm
ThemeRemoveCommand.php16900644editdlrm
ThemeRenameCommand.php25810644editdlrm
Edit: /home/techb158/immovalet.com/vendor/botble/theme/src/Commands/ThemeAssetsPublishCommand.php (1745B)
themeService = $themeService; } /** * Execute the console command. * * @return bool */ public function handle() { if ($this->option('name') && !preg_match('/^[a-z0-9\-]+$/i', $this->option('name'))) { $this->error('Only alphabetic characters are allowed.'); return 1; } if ($this->option('name') && !File::isDirectory($this->getPath())) { $this->error('Theme "' . $this->getTheme() . '" is not exists.'); return 1; } $result = $this->themeService->publishAssets($this->option('name')); if ($result['error']) { $this->error($result['message']); return 1; } $this->info($result['message']); return 0; } }