You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -147,7 +147,7 @@ private function registerEnvLoader(ContainerBuilder $container, array $config):
147
147
148
148
if (null !== $client = $config['secrets']['client']) {
149
149
if (!isset($config['clients'][$client])) {
150
-
thrownewInvalidConfigurationException(sprintf('The client "%s" configured in "async_aws.secrets" does not exists. Available clients are "%s"', $client, implode(', ', \array_keys($config['clients']))));
150
+
thrownewInvalidConfigurationException(sprintf('The client "%s" configured in "async_aws.secrets" does not exists. Available clients are "%s"', $client, implode(', ', array_keys($config['clients']))));
151
151
}
152
152
if ('ssm' !== $config['clients'][$client]['type']) {
153
153
thrownewInvalidConfigurationException(sprintf('The client "%s" configured in "async_aws.secrets" is not a SSM client.', $client));
@@ -174,7 +174,7 @@ private function registerEnvLoader(ContainerBuilder $container, array $config):
174
174
]);
175
175
176
176
if ($config['secrets']['cache']['enabled']) {
177
-
if (!\interface_exists(CacheInterface::class)) {
177
+
if (!interface_exists(CacheInterface::class)) {
178
178
thrownewInvalidConfigurationException(sprintf('You have enabled "async_aws.secrets.cache" but the "symfony/cache" package is not installed. Try running "composer require symfony/cache"'));
0 commit comments