Skip to content
Snippets Groups Projects
Commit 7693c725 authored by Ere Maijala's avatar Ere Maijala Committed by Demian Katz
Browse files

Fix ILSAuthenticatorFactory to create the proxy for the requested class.

parent 1b7d7e1f
Branches
Tags
No related merge requests found
...@@ -77,6 +77,6 @@ class ILSAuthenticatorFactory implements FactoryInterface ...@@ -77,6 +77,6 @@ class ILSAuthenticatorFactory implements FactoryInterface
}; };
$cfg = $container->get('ProxyManager\Configuration'); $cfg = $container->get('ProxyManager\Configuration');
$factory = new \ProxyManager\Factory\LazyLoadingValueHolderFactory($cfg); $factory = new \ProxyManager\Factory\LazyLoadingValueHolderFactory($cfg);
return $factory->createProxy('VuFind\Auth\ILSAuthenticator', $callback); return $factory->createProxy($requestedName, $callback);
} }
} }
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment