Add a getter for providers to the ChainUserProvider class

This commit is contained in:
Elnur Abdurrakhimov 2013-02-15 06:01:23 +04:00
parent f66e109d14
commit 0a82d73b09

View File

@ -31,6 +31,14 @@ class ChainUserProvider implements UserProviderInterface
$this->providers = $providers;
}
/**
* @return array
*/
public function getProviders()
{
return $this->providers;
}
/**
* {@inheritDoc}
*/