diff options
author | Marek Štípek <mario.dweller@seznam.cz> | 2014-03-12 11:37:08 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2014-06-06 05:53:30 +0200 |
commit | a003576e94bc0664d259997672e0ee7dd5888b9e (patch) | |
tree | e84405bcd6031601ecf2ed067441ebbb9fbf917d /Core/Exception | |
parent | ef0a43829bba00b8e030331ed1ec414ff49fcbc9 (diff) | |
download | symfony-security-a003576e94bc0664d259997672e0ee7dd5888b9e.zip symfony-security-a003576e94bc0664d259997672e0ee7dd5888b9e.tar.gz symfony-security-a003576e94bc0664d259997672e0ee7dd5888b9e.tar.bz2 |
Username in UsernameNotFoundException message data
Diffstat (limited to 'Core/Exception')
-rw-r--r-- | Core/Exception/UsernameNotFoundException.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Core/Exception/UsernameNotFoundException.php b/Core/Exception/UsernameNotFoundException.php index f656bac..1d60a12 100644 --- a/Core/Exception/UsernameNotFoundException.php +++ b/Core/Exception/UsernameNotFoundException.php @@ -69,4 +69,12 @@ class UsernameNotFoundException extends AuthenticationException parent::unserialize($parentData); } + + /** + * {@inheritDoc} + */ + public function getMessageData() + { + return array('{{ username }}' => $this->username); + } } |