diff --git a/src/Symfony/Component/Security/Core/User/ChainUserProvider.php b/src/Symfony/Component/Security/Core/User/ChainUserProvider.php index 3ff1ea9372..fc720746dd 100644 --- a/src/Symfony/Component/Security/Core/User/ChainUserProvider.php +++ b/src/Symfony/Component/Security/Core/User/ChainUserProvider.php @@ -31,6 +31,14 @@ class ChainUserProvider implements UserProviderInterface $this->providers = $providers; } + /** + * @return array + */ + public function getProviders() + { + return $this->providers; + } + /** * {@inheritDoc} */