Skip to content

Commit 4476c94

Browse files
committed
Merge branch '2.3' into 2.4
* 2.3: made {@inheritdoc} annotations consistent across the board fixed types in phpdocs made phpdoc types consistent with those defined in Hack Add support Thai translations made types consistent with those defined in Hack removed extra/unsupported arguments [HttpKernel] fixed an error message [TwigBundle] removed undefined argument [Translation] Make IcuDatFileLoader/IcuResFileLoader::load invalid resource compatible with HHVM. Conflicts: src/Symfony/Bridge/ProxyManager/Tests/LazyProxy/Fixtures/php/lazy_service.php src/Symfony/Bundle/FrameworkBundle/Command/ContainerDebugCommand.php src/Symfony/Bundle/FrameworkBundle/Templating/Loader/FilesystemLoader.php src/Symfony/Bundle/WebProfilerBundle/EventListener/WebDebugToolbarListener.php src/Symfony/Component/Config/Definition/ReferenceDumper.php src/Symfony/Component/Console/Helper/DescriptorHelper.php src/Symfony/Component/Debug/ErrorHandler.php src/Symfony/Component/Finder/Tests/Iterator/RecursiveDirectoryIteratorTest.php src/Symfony/Component/Form/Extension/Core/DataTransformer/IntegerToLocalizedStringTransformer.php src/Symfony/Component/Form/Tests/Extension/Core/DataMapper/PropertyPathMapperTest.php src/Symfony/Component/HttpFoundation/Response.php src/Symfony/Component/HttpFoundation/StreamedResponse.php src/Symfony/Component/HttpKernel/Debug/TraceableEventDispatcher.php src/Symfony/Component/HttpKernel/EventListener/ProfilerListener.php src/Symfony/Component/HttpKernel/Fragment/FragmentHandler.php src/Symfony/Component/HttpKernel/Fragment/RoutableFragmentRenderer.php src/Symfony/Component/HttpKernel/Kernel.php src/Symfony/Component/HttpKernel/Tests/Fixtures/KernelForTest.php src/Symfony/Component/Intl/NumberFormatter/NumberFormatter.php src/Symfony/Component/Security/Core/Authorization/AccessDecisionManager.php src/Symfony/Component/Stopwatch/StopwatchPeriod.php src/Symfony/Component/Translation/TranslatorInterface.php src/Symfony/Component/Validator/ConstraintValidatorFactory.php
2 parents 0cbe727 + 10c7b75 commit 4476c94

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
@@ -38,8 +38,8 @@ class JsonDecode implements DecoderInterface
3838
/**
3939
* Constructs a new JsonDecode instance.
4040
*
41-
* @param Boolean $associative True to return the result associative array, false for a nested stdClass hierarchy
42-
* @param integer $depth Specifies the recursion depth
41+
* @param bool $associative True to return the result associative array, false for a nested stdClass hierarchy
42+
* @param int $depth Specifies the recursion depth
4343
*/
4444
public function __construct($associative = false, $depth = 512)
4545
{

Normalizer/GetSetMethodNormalizer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,15 +178,15 @@ protected function formatAttribute($attributeName)
178178
}
179179

180180
/**
181-
* {@inheritDoc}
181+
* {@inheritdoc}
182182
*/
183183
public function supportsNormalization($data, $format = null)
184184
{
185185
return is_object($data) && $this->supports(get_class($data));
186186
}
187187

188188
/**
189-
* {@inheritDoc}
189+
* {@inheritdoc}
190190
*/
191191
public function supportsDenormalization($data, $type, $format = null)
192192
{

0 commit comments

Comments
 (0)