Skip to content

Commit 20f1b8f

Browse files
committed
Merge branch '2.4'
* 2.4: fixed types in phpdocs fixed types in phpdocs Conflicts: src/Symfony/Component/Security/Core/Encoder/BasePasswordEncoder.php src/Symfony/Component/Security/Http/RememberMe/TokenBasedRememberMeServices.php src/Symfony/Component/Serializer/Encoder/JsonEncoder.php src/Symfony/Component/Serializer/Normalizer/GetSetMethodNormalizer.php src/Symfony/Component/Validator/Mapping/ClassMetadata.php src/Symfony/Component/Validator/Mapping/ElementMetadata.php src/Symfony/Component/Validator/Mapping/MemberMetadata.php src/Symfony/Component/Validator/MetadataFactoryInterface.php
2 parents 3641917 + 7905f83 commit 20f1b8f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

DataCollector/SecurityDataCollector.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public function collect(Request $request, Response $response, \Exception $except
6565
/**
6666
* Checks if security is enabled.
6767
*
68-
* @return Boolean true if security is enabled, false otherwise
68+
* @return bool true if security is enabled, false otherwise
6969
*/
7070
public function isEnabled()
7171
{
@@ -95,7 +95,7 @@ public function getRoles()
9595
/**
9696
* Checks if the user is authenticated or not.
9797
*
98-
* @return Boolean true if the user is authenticated, false otherwise
98+
* @return bool true if the user is authenticated, false otherwise
9999
*/
100100
public function isAuthenticated()
101101
{

DependencyInjection/Security/Factory/AbstractFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ protected function createEntryPoint($container, $id, $config, $defaultEntryPoint
146146
*
147147
* @param array $config
148148
*
149-
* @return Boolean Whether a possibly configured RememberMeServices should be set for this listener
149+
* @return bool Whether a possibly configured RememberMeServices should be set for this listener
150150
*/
151151
protected function isRememberMeAware($config)
152152
{

0 commit comments

Comments
 (0)