Skip to content

Commit 12a6a94

Browse files
minor symfony#61337 [FrameworkBundle] Fix block type from OK to ERROR when local vault is disabled in SecretsRemoveCommand (santysisi)
This PR was merged into the 6.4 branch. Discussion ---------- [FrameworkBundle] Fix block type from `OK` to `ERROR` when local vault is disabled in `SecretsRemoveCommand` | Q | A | ------------- | --- | Branch? | 6.4 | Bug fix? | yes | New feature? | no | Deprecations? | no | Issues | no | License | MIT Minor: fix block type from `OK` to `ERROR` when local vault is disabled in `SecretsRemoveCommand` [Reference](symfony#61317) Commits ------- ac7821e [FrameworkBundle] Fix block type from `OK` to `ERROR` when local vault is disabled in `SecretsRemoveCommand`
2 parents 889bb6b + ac7821e commit 12a6a94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/FrameworkBundle/Command/SecretsRemoveCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
6363
$vault = $input->getOption('local') ? $this->localVault : $this->vault;
6464

6565
if (null === $vault) {
66-
$io->success('The local vault is disabled.');
66+
$io->error('The local vault is disabled.');
6767

6868
return 1;
6969
}

0 commit comments

Comments
 (0)