From 8f7b7b48fe2be6d50fb2bb50785e00df8154669f Mon Sep 17 00:00:00 2001
From: =?utf8?q?Rapha=C3=ABl=20Gertz?= <git@rapsys.eu>
Date: Wed, 24 Feb 2021 00:35:39 +0100
Subject: [PATCH] Add inherited doc

---
 Security/LogoutSuccessHandler.php | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/Security/LogoutSuccessHandler.php b/Security/LogoutSuccessHandler.php
index 3ac33f7..c6ca529 100644
--- a/Security/LogoutSuccessHandler.php
+++ b/Security/LogoutSuccessHandler.php
@@ -9,8 +9,14 @@ use Symfony\Component\Routing\RouterInterface;
 use Symfony\Component\Security\Http\Logout\LogoutSuccessHandlerInterface;
 
 class LogoutSuccessHandler implements LogoutSuccessHandlerInterface {
+	/**
+	 * {@inheritdoc}
+	 */
 	protected $router;
 
+	/**
+	 * {@inheritdoc}
+	 */
 	public function __construct(RouterInterface $router) {
 		$this->router = $router;
 	}
-- 
2.41.3