Skip to content
This repository was archived by the owner on May 31, 2024. It is now read-only.

Commit b583bf8

Browse files
committed
removed dots at the end of @param and @return
1 parent 3d7eddb commit b583bf8

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

Acl/Domain/PermissionGrantingStrategy.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public function isFieldGranted(AclInterface $acl, $field, array $masks, array $s
130130
* @param SecurityIdentityInterface[] $sids An array of SecurityIdentityInterface implementations
131131
* @param bool $administrativeMode True turns off audit logging
132132
*
133-
* @return bool true, or false; either granting, or denying access respectively.
133+
* @return bool true, or false; either granting, or denying access respectively
134134
*
135135
* @throws NoAceFoundException
136136
*/

Core/Authentication/Token/AnonymousToken.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class AnonymousToken extends AbstractToken
2626
* Constructor.
2727
*
2828
* @param string $key The key shared with the authentication provider
29-
* @param string|object $user The user can be a UserInterface instance, or an object implementing a __toString method or the username as a regular string.
29+
* @param string|object $user The user can be a UserInterface instance, or an object implementing a __toString method or the username as a regular string
3030
* @param RoleInterface[] $roles An array of roles
3131
*/
3232
public function __construct($key, $user, array $roles = array())

Core/Authentication/Token/PreAuthenticatedToken.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class PreAuthenticatedToken extends AbstractToken
2626
/**
2727
* Constructor.
2828
*
29-
* @param string|object $user The user can be a UserInterface instance, or an object implementing a __toString method or the username as a regular string.
29+
* @param string|object $user The user can be a UserInterface instance, or an object implementing a __toString method or the username as a regular string
3030
* @param mixed $credentials The user credentials
3131
* @param string $providerKey The provider key
3232
* @param RoleInterface[]|string[] $roles An array of roles

Core/Authentication/Token/TokenInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function __toString();
3333
/**
3434
* Returns the user roles.
3535
*
36-
* @return RoleInterface[] An array of RoleInterface instances.
36+
* @return RoleInterface[] An array of RoleInterface instances
3737
*/
3838
public function getRoles();
3939

Core/Authentication/Token/UsernamePasswordToken.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class UsernamePasswordToken extends AbstractToken
2626
/**
2727
* Constructor.
2828
*
29-
* @param string|object $user The username (like a nickname, email address, etc.), or a UserInterface instance or an object implementing a __toString method.
29+
* @param string|object $user The username (like a nickname, email address, etc.), or a UserInterface instance or an object implementing a __toString method
3030
* @param string $credentials This usually is the password of the user
3131
* @param string $providerKey The provider key
3232
* @param RoleInterface[]|string[] $roles An array of roles

Core/User/InMemoryUserProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public function supportsClass($class)
9797
/**
9898
* Returns the user by given username.
9999
*
100-
* @param string $username The username.
100+
* @param string $username The username
101101
*
102102
* @return User
103103
*

Http/Authentication/DefaultAuthenticationFailureHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class DefaultAuthenticationFailureHandler implements AuthenticationFailureHandle
4646
*
4747
* @param HttpKernelInterface $httpKernel
4848
* @param HttpUtils $httpUtils
49-
* @param array $options Options for processing a failed authentication attempt.
49+
* @param array $options Options for processing a failed authentication attempt
5050
* @param LoggerInterface $logger Optional logger
5151
*/
5252
public function __construct(HttpKernelInterface $httpKernel, HttpUtils $httpUtils, array $options = array(), LoggerInterface $logger = null)

Http/Authentication/DefaultAuthenticationSuccessHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class DefaultAuthenticationSuccessHandler implements AuthenticationSuccessHandle
3939
* Constructor.
4040
*
4141
* @param HttpUtils $httpUtils
42-
* @param array $options Options for processing a successful authentication attempt.
42+
* @param array $options Options for processing a successful authentication attempt
4343
*/
4444
public function __construct(HttpUtils $httpUtils, array $options = array())
4545
{

0 commit comments

Comments
 (0)