diff options
Diffstat (limited to 'Core/Role/SwitchUserRole.php')
-rw-r--r-- | Core/Role/SwitchUserRole.php | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/Core/Role/SwitchUserRole.php b/Core/Role/SwitchUserRole.php index 3076f34..c679584 100644 --- a/Core/Role/SwitchUserRole.php +++ b/Core/Role/SwitchUserRole.php @@ -45,22 +45,4 @@ class SwitchUserRole extends Role { return $this->source; } - - /** - * {@inheritdoc} - */ - public function serialize() - { - return serialize(array(parent::serialize(), $this->source)); - } - - /** - * {@inheritdoc} - */ - public function unserialize($serialized) - { - list($parent, $this->source) = unserialize($serialized); - - parent::unserialize($parent); - } } |