Skip to content

Commit 7169d57

Browse files
Merge branch '3.4' into 4.3
* 3.4: Remove superfluous phpdoc tags
2 parents b63a6cc + 57ad39e commit 7169d57

File tree

5 files changed

+8
-15
lines changed

5 files changed

+8
-15
lines changed

Authentication/DefaultAuthenticationSuccessHandler.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@ class DefaultAuthenticationSuccessHandler implements AuthenticationSuccessHandle
4040
];
4141

4242
/**
43-
* @param HttpUtils $httpUtils
44-
* @param array $options Options for processing a successful authentication attempt
43+
* @param array $options Options for processing a successful authentication attempt
4544
*/
4645
public function __construct(HttpUtils $httpUtils, array $options = [])
4746
{

EntryPoint/FormAuthenticationEntryPoint.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,9 @@ class FormAuthenticationEntryPoint implements AuthenticationEntryPointInterface
2929
private $httpUtils;
3030

3131
/**
32-
* @param HttpKernelInterface $kernel
33-
* @param HttpUtils $httpUtils An HttpUtils instance
34-
* @param string $loginPath The path to the login form
35-
* @param bool $useForward Whether to forward or redirect to the login form
32+
* @param HttpUtils $httpUtils An HttpUtils instance
33+
* @param string $loginPath The path to the login form
34+
* @param bool $useForward Whether to forward or redirect to the login form
3635
*/
3736
public function __construct(HttpKernelInterface $kernel, HttpUtils $httpUtils, string $loginPath, bool $useForward = false)
3837
{

Firewall/LogoutListener.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ class LogoutListener implements ListenerInterface
4242
private $csrfTokenManager;
4343

4444
/**
45-
* @param TokenStorageInterface $tokenStorage
4645
* @param HttpUtils $httpUtils An HttpUtils instance
4746
* @param LogoutSuccessHandlerInterface $successHandler A LogoutSuccessHandlerInterface instance
4847
* @param array $options An array of options to process a logout attempt

Logout/LogoutUrlGenerator.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ public function __construct(RequestStack $requestStack = null, UrlGeneratorInter
4646
* @param string $csrfTokenId The ID of the CSRF token
4747
* @param string $csrfParameter The CSRF token parameter name
4848
* @param CsrfTokenManagerInterface|null $csrfTokenManager A CsrfTokenManagerInterface instance
49-
* @param string|null $context The listener context
5049
*/
5150
public function registerListener($key, $logoutPath, $csrfTokenId, $csrfParameter, CsrfTokenManagerInterface $csrfTokenManager = null, string $context = null)
5251
{

Util/TargetPathTrait.php

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,8 @@ trait TargetPathTrait
2323
*
2424
* Usually, you do not need to set this directly.
2525
*
26-
* @param SessionInterface $session
27-
* @param string $providerKey The name of your firewall
28-
* @param string $uri The URI to set as the target path
26+
* @param string $providerKey The name of your firewall
27+
* @param string $uri The URI to set as the target path
2928
*/
3029
private function saveTargetPath(SessionInterface $session, $providerKey, $uri)
3130
{
@@ -35,8 +34,7 @@ private function saveTargetPath(SessionInterface $session, $providerKey, $uri)
3534
/**
3635
* Returns the URL (if any) the user visited that forced them to login.
3736
*
38-
* @param SessionInterface $session
39-
* @param string $providerKey The name of your firewall
37+
* @param string $providerKey The name of your firewall
4038
*
4139
* @return string|null
4240
*/
@@ -48,8 +46,7 @@ private function getTargetPath(SessionInterface $session, $providerKey)
4846
/**
4947
* Removes the target path from the session.
5048
*
51-
* @param SessionInterface $session
52-
* @param string $providerKey The name of your firewall
49+
* @param string $providerKey The name of your firewall
5350
*/
5451
private function removeTargetPath(SessionInterface $session, $providerKey)
5552
{

0 commit comments

Comments
 (0)