-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(env-var): Deprecate EnvVarEncryptedProcessor service and Encrypt… #28
base: master
Are you sure you want to change the base?
Conversation
@@ -19,10 +19,18 @@ | |||
use Symfony\Component\Console\Input\InputOption; | |||
use Symfony\Component\Console\Output\OutputInterface; | |||
|
|||
@trigger_error( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should use https://github.com/symfony/deprecation-contracts now.
@@ -60,11 +60,17 @@ private function configureEncryptor(array $config, ContainerBuilder $container): | |||
} | |||
|
|||
/** | |||
* @deprecated | |||
* @param array $config | |||
* @param ContainerBuilder $container | |||
*/ | |||
private function configureEncryptCommand(array $config, ContainerBuilder $container): void |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Private API don't need to be deprecated.
@@ -20,10 +20,17 @@ | |||
use Symfony\Component\Console\Input\InputInterface; | |||
use Symfony\Component\Console\Output\OutputInterface; | |||
|
|||
@trigger_error( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think tests need to be deprecated.
deprecate EnvVarEncryptedProcessor service use symfony secrets management instead.