You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
trigger_deprecation('symfony/security-http', '6.3', 'Calling "%s()" with the secret as the second argument is deprecated. The argument will be dropped in 7.0.', __CLASS__);
if (!$userProviderinstanceof UserProviderInterface) {
58
+
thrownew \TypeError(sprintf('Argument 2 passed to "%s()" must an instance of "%s", "%s" given.', __CLASS__, UserProviderInterface::class, get_debug_type($userProvider)));
59
+
}
60
+
61
+
if (!$requestStackinstanceof RequestStack) {
62
+
thrownew \TypeError(sprintf('Argument 3 passed to "%s()" must an instance of "%s", "%s" given.', __CLASS__, RequestStack::class, get_debug_type($userProvider)));
63
+
}
64
+
65
+
if (!\is_array($options)) {
66
+
thrownew \TypeError(sprintf('Argument 4 passed to "%s()" must an array, "%s" given.', __CLASS__, get_debug_type($userProvider)));
67
+
}
68
+
69
+
if (null !== $logger && !$loggerinstanceof LoggerInterface) {
70
+
thrownew \TypeError(sprintf('Argument 5 passed to "%s()" must an instance of "%s", "%s" given.', __CLASS__, LoggerInterface::class, get_debug_type($userProvider)));
71
+
}
72
+
73
+
if (null !== $tokenVerifier && !$tokenVerifierinstanceof TokenVerifierInterface) {
74
+
thrownew \TypeError(sprintf('Argument 6 passed to "%s()" must an instance of "%s", "%s" given.', __CLASS__, TokenVerifierInterface::class, get_debug_type($userProvider)));
0 commit comments