Skip to content

Commit

Permalink
Style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zds-s committed May 16, 2024
1 parent 0d8156e commit d57ab3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Command/DownloadCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class DownloadCommand extends Base
public function __invoke()
{
$identifier = $this->input->getArgument('identifier');
[ $space, $identifier ] = explode('/', $identifier);
[$space, $identifier] = explode('/', $identifier);
$version = $this->input->getArgument('version');
$appStoreService = ApplicationContext::getContainer()->get(AppStoreService::class);
$appStoreService->download($space, $identifier, $version);
Expand Down

0 comments on commit d57ab3c

Please sign in to comment.