diff options
Diffstat (limited to 'Core/Exception/UsernameNotFoundException.php')
-rw-r--r-- | Core/Exception/UsernameNotFoundException.php | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Core/Exception/UsernameNotFoundException.php b/Core/Exception/UsernameNotFoundException.php index 9a9989f..0299f83 100644 --- a/Core/Exception/UsernameNotFoundException.php +++ b/Core/Exception/UsernameNotFoundException.php @@ -65,10 +65,8 @@ class UsernameNotFoundException extends AuthenticationException */ public function unserialize($str) { - list( - $this->username, - $parentData - ) = unserialize($str); + list($this->username, $parentData) = unserialize($str); + parent::unserialize($parentData); } } |