Skip to content
Snippets Groups Projects
Commit 8678cc4c authored by Florian Joriot's avatar Florian Joriot
Browse files

Merge branch 'php82'

# Conflicts:
#	composer.json
parents 482f2acb 5a6da799
Branches
Tags 6.1.0
No related merge requests found
Pipeline #25246 passed
......@@ -19,7 +19,7 @@ use Laminas\DeveloperTools\Collector\CollectorInterface;
*
* @author Marco Pivetta <ocramius@gmail.com>
*/
class RoleCollector implements CollectorInterface, Serializable
class RoleCollector implements CollectorInterface
{
const NAME = 'bjy_authorize_role_collector';
......@@ -96,7 +96,7 @@ class RoleCollector implements CollectorInterface, Serializable
/**
* {@inheritDoc}
*/
public function serialize()
public function __serialize()
{
return serialize($this->collectedRoles);
}
......@@ -104,7 +104,7 @@ class RoleCollector implements CollectorInterface, Serializable
/**
* {@inheritDoc}
*/
public function unserialize($serialized)
public function __unserialize($serialized)
{
$this->collectedRoles = unserialize($serialized);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment