We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d8156e commit d57ab3cCopy full SHA for d57ab3c
src/Command/DownloadCommand.php
@@ -28,7 +28,7 @@ class DownloadCommand extends Base
28
public function __invoke()
29
{
30
$identifier = $this->input->getArgument('identifier');
31
- [ $space, $identifier ] = explode('/', $identifier);
+ [$space, $identifier] = explode('/', $identifier);
32
$version = $this->input->getArgument('version');
33
$appStoreService = ApplicationContext::getContainer()->get(AppStoreService::class);
34
$appStoreService->download($space, $identifier, $version);
0 commit comments