From 6699a79d7f3e958907a0f580e4685b95be79296c Mon Sep 17 00:00:00 2001
From: =?utf8?q?Rapha=C3=ABl=20Gertz?= <git@rapsys.eu>
Date: Fri, 10 Nov 2023 12:26:11 +0100
Subject: [PATCH] Strict types

---
 Handler/AuthenticationSuccessHandler.php | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Handler/AuthenticationSuccessHandler.php b/Handler/AuthenticationSuccessHandler.php
index 90d53d7..579c110 100644
--- a/Handler/AuthenticationSuccessHandler.php
+++ b/Handler/AuthenticationSuccessHandler.php
@@ -37,7 +37,7 @@ class AuthenticationSuccessHandler extends DefaultAuthenticationSuccessHandler {
 	/**
 	 * Default options
 	 */
-    protected $defaultOptions = [
+    protected array $defaultOptions = [
         'always_use_default_target_path' => false,
         'default_target_path' => '/',
         'login_path' => '/login',
@@ -48,12 +48,12 @@ class AuthenticationSuccessHandler extends DefaultAuthenticationSuccessHandler {
 	/**
 	 * Options
 	 */
-    protected $options;
+    protected array $options;
 
 	/**
 	 * Router instance
 	 */
-	protected $router;
+	protected RouterInterface $router;
 
 	/**
 	 * {@inheritdoc}
-- 
2.41.3