Skip to content

Commit 9697062

Browse files
Merge branch '5.2' into 5.x
* 5.2: [SecurityBundle] role_names variable instead of roles [PhpUnitBridge] fix reporting deprecations when they come from DebugClassLoader Fix Request with DNS issue not retried Bump Symfony version to 5.2.4 Update VERSION for 5.2.3 Update CHANGELOG for 5.2.3 [ErrorHandler] fix parsing return types in DebugClassLoader [ErrorHandler] fix handling messages with null bytes from anonymous classes Restore priority for eventSubscribers
2 parents 59439dd + 9e4e059 commit 9697062

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)