Skip to content

Commit 2fc81c7

Browse files
committed
Env Vars Processor now correctly loaded
This commit fixes a bug that prevent the JWK/JWKSet env vars processor to be loaded.
1 parent f343538 commit 2fc81c7

File tree

1 file changed

+1
-1
lines changed
  • src/Bundle/JoseFramework/DependencyInjection/Source/Core

1 file changed

+1
-1
lines changed

src/Bundle/JoseFramework/DependencyInjection/Source/Core/CoreSource.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public function load(array $config, ContainerBuilder $container)
4545
$loader = new YamlFileLoader($container, new FileLocator(__DIR__.'/../../../Resources/config'));
4646
$loader->load('services.yml');
4747

48-
if (class_exists(EnvVarProcessorInterface::class)) {
48+
if (interface_exists(EnvVarProcessorInterface::class)) {
4949
$loader->load('env_var.yml');
5050
}
5151

0 commit comments

Comments
 (0)