summaryrefslogtreecommitdiffstats
path: root/Core/Exception/UsernameNotFoundException.php
diff options
context:
space:
mode:
Diffstat (limited to 'Core/Exception/UsernameNotFoundException.php')
-rw-r--r--Core/Exception/UsernameNotFoundException.php6
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);
}
}