X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/48ac8640c9a6bf908a754022eb149202ba3af8f8..6d6c1141f8f45f6895b81402fe7b3d6a478953bf:/Security/LogoutSuccessHandler.php

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;
 	}