Skip to content

Commit 9e4e059

Browse files
Merge branch '4.4' into 5.2
* 4.4: [SecurityBundle] role_names variable instead of roles [PhpUnitBridge] fix reporting deprecations when they come from DebugClassLoader [ErrorHandler] fix parsing return types in DebugClassLoader [ErrorHandler] fix handling messages with null bytes from anonymous classes Restore priority for eventSubscribers
2 parents a468c86 + 0d263ca commit 9e4e059

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/Authentication/Token/AbstractTokenTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,12 +233,12 @@ public function getSalt()
233233
return null;
234234
}
235235

236-
public function serialize()
236+
public function serialize(): string
237237
{
238238
return serialize($this->name);
239239
}
240240

241-
public function unserialize($serialized)
241+
public function unserialize($serialized): void
242242
{
243243
$this->name = unserialize($serialized);
244244
}

0 commit comments

Comments
 (0)