From: Raphaƫl Gertz Date: Tue, 23 Feb 2021 23:35:39 +0000 (+0100) Subject: Add inherited doc X-Git-Tag: 0.2.1~45 X-Git-Url: https://git.rapsys.eu/airbundle/commitdiff_plain/8f7b7b48fe2be6d50fb2bb50785e00df8154669f Add inherited doc --- 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; }