Skip to content

Commit a34d4d1

Browse files
committed
Merge branch '2.5'
* 2.5: Remove aligned '=>' and '=' Break infinite loop while resolving aliases [Security][listener] change priority of switchuser Improved the phpdoc for security token classes bumped Symfony version to 2.5.7 updated VERSION for 2.5.6 updated CHANGELOG for 2.5.6 bumped Symfony version to 2.3.22 updated VERSION for 2.3.21 update CONTRIBUTORS for 2.3.21 updated CHANGELOG for 2.3.21 Conflicts: src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/ConfigurationTest.php src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/AbstractFactory.php src/Symfony/Bundle/TwigBundle/Controller/ExceptionController.php src/Symfony/Component/Debug/ErrorHandler.php src/Symfony/Component/Debug/ExceptionHandler.php src/Symfony/Component/Form/Extension/Core/Type/BaseType.php src/Symfony/Component/Form/Extension/Core/Type/ChoiceType.php src/Symfony/Component/Form/Extension/Core/Type/DateTimeType.php src/Symfony/Component/Form/Extension/Core/Type/DateType.php src/Symfony/Component/Form/Extension/Core/Type/TimeType.php src/Symfony/Component/Form/Extension/Validator/Type/FormTypeValidatorExtension.php src/Symfony/Component/HttpFoundation/Request.php src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MongoDbSessionHandler.php src/Symfony/Component/HttpFoundation/Session/Storage/Handler/PdoSessionHandler.php src/Symfony/Component/HttpKernel/Kernel.php src/Symfony/Component/Security/Core/SecurityContextInterface.php src/Symfony/Component/Security/Http/Authentication/DefaultAuthenticationFailureHandler.php src/Symfony/Component/Security/Http/Authentication/DefaultAuthenticationSuccessHandler.php src/Symfony/Component/Security/Http/Firewall/AnonymousAuthenticationListener.php src/Symfony/Component/Serializer/Serializer.php src/Symfony/Component/Validator/Constraints/File.php
2 parents af4c646 + 593b93b commit a34d4d1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Encoder/JsonDecode.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ public function decode($data, $format, array $context = array())
9595
{
9696
$context = $this->resolveContext($context);
9797

98-
$associative = $context['json_decode_associative'];
98+
$associative = $context['json_decode_associative'];
9999
$recursionDepth = $context['json_decode_recursion_depth'];
100-
$options = $context['json_decode_options'];
100+
$options = $context['json_decode_options'];
101101

102102
if (version_compare(PHP_VERSION, '5.4.0') >= 0) {
103103
$decodedData = json_decode($data, $associative, $recursionDepth, $options);

Serializer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ class Serializer implements SerializerInterface, NormalizerInterface, Denormaliz
4747
/**
4848
* @var array
4949
*/
50-
protected $normalizers = array();
50+
protected $normalizers = array();
5151
/**
5252
* @var array
5353
*/
54-
protected $normalizerCache = array();
54+
protected $normalizerCache = array();
5555
/**
5656
* @var array
5757
*/

0 commit comments

Comments
 (0)