1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-13 19:24:03 +00:00

phpcsfixer: enable nullable_type_declaration_for_default_null_value

This commit is contained in:
Samuel Štancl 2024-04-09 20:55:49 +02:00
parent eecf6f21c8
commit 20c1b9a940
6 changed files with 10 additions and 9 deletions

View file

@ -30,7 +30,7 @@ class UserImpersonation implements Feature
}
/** Impersonate a user and get an HTTP redirect response. */
public static function makeResponse(string|ImpersonationToken $token, int $ttl = null): RedirectResponse
public static function makeResponse(string|ImpersonationToken $token, ?int $ttl = null): RedirectResponse
{
/** @var ImpersonationToken $token */
$token = $token instanceof ImpersonationToken ? $token : ImpersonationToken::findOrFail($token);