Skip to content
This repository was archived by the owner on May 31, 2024. It is now read-only.

Commit a7d038d

Browse files
[ErrorHandler] fix parsing return types in DebugClassLoader
1 parent e9d1e19 commit a7d038d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Core/Tests/Authentication/Token/AbstractTokenTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -320,12 +320,12 @@ public function getSalt()
320320
return null;
321321
}
322322

323-
public function serialize()
323+
public function serialize(): string
324324
{
325325
return serialize($this->name);
326326
}
327327

328-
public function unserialize($serialized)
328+
public function unserialize($serialized): void
329329
{
330330
$this->name = unserialize($serialized);
331331
}

0 commit comments

Comments
 (0)