Skip to content

Commit 3eb20aa

Browse files
Merge pull request #22 from Kleisli/master
Fix: Remove mixed type
2 parents e1d94a0 + 71b08fa commit 3eb20aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Classes/Service/ImpersonateService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ protected function writeSession(string $key, ?string $value): void
169169
* @param string $key
170170
* @throws SessionNotStartedException
171171
*/
172-
protected function getSessionData(string $key): ?mixed
172+
protected function getSessionData(string $key)
173173
{
174174
return $this->session->isStarted() && $this->session->hasKey($key) ? $this->session->getData($key) : null;
175175
}

0 commit comments

Comments
 (0)