Skip to content

Commit 5213778

Browse files
Merge branch '3.1'
* 3.1: [VarDumper] Fix indentation trimming in ExceptionCaster [HttpKernel] Clarify deprecation of non-scalar values in surrogate renderer removed @SInCE [Security] fixed DebugAccessDecisionManager::setVoters() Remove and change unrelevant comments in Validator and Security components. [Validator] add missing interface use statement for phpdoc block return type. [Validator] UuidValidator must accept a Uuid constraint. [Validator] make UuidValidator class formatting consistent. Conflicts: src/Symfony/Component/Validator/Tests/Constraints/AbstractConstraintValidatorTest.php
2 parents d9f1a72 + e41a352 commit 5213778

File tree

57 files changed

+50
-158
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+50
-158
lines changed

UPGRADE-3.1.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ FrameworkBundle
9595
HttpKernel
9696
----------
9797

98-
* Passing objects as URI attributes to the ESI and SSI renderers has been
98+
* Passing non-scalar values as URI attributes to the ESI and SSI renderers has been
9999
deprecated and will be removed in Symfony 4.0. The inline fragment
100-
renderer should be used with object attributes.
100+
renderer should be used with non-scalar attributes.
101101

102102
* The `ControllerResolver::getArguments()` method has been deprecated and will
103103
be removed in 4.0. If you have your own `ControllerResolverInterface`

UPGRADE-4.0.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,9 +124,9 @@ FrameworkBundle
124124
HttpKernel
125125
----------
126126

127-
* Possibility to pass objects as URI attributes to the ESI and SSI renderers
128-
has been removed. The inline fragment renderer should be used with object
129-
attributes.
127+
* Possibility to pass non-scalar values as URI attributes to the ESI and SSI
128+
renderers has been removed. The inline fragment renderer should be used with
129+
non-scalar attributes.
130130

131131
* The `ControllerResolver::getArguments()` method has been removed. If you
132132
have your own `ControllerResolverInterface` implementation, you should

src/Symfony/Bridge/Doctrine/DependencyInjection/CompilerPass/RegisterMappingsPass.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,6 @@ abstract class RegisterMappingsPass implements CompilerPassInterface
117117
* @param string $registerAliasMethodName Name of Configuration class method to
118118
* register alias.
119119
* @param string[] $aliasMap Map of alias to namespace
120-
*
121-
* @since Support for bundle alias was added in Symfony 2.6
122120
*/
123121
public function __construct($driver, array $namespaces, array $managerParameters, $driverPattern, $enabledParameter = false, $configurationPattern = '', $registerAliasMethodName = '', array $aliasMap = array())
124122
{

src/Symfony/Bridge/Doctrine/Form/ChoiceList/IdReader.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
/**
1919
* A utility for reading object IDs.
2020
*
21-
* @since 1.0
22-
*
2321
* @author Bernhard Schussek <bschussek@gmail.com>
2422
*
2523
* @internal This class is meant for internal use only.

src/Symfony/Component/Form/Extension/DataCollector/DataCollectorExtension.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
/**
1818
* Extension for collecting data of the forms on a page.
1919
*
20-
* @since 2.4
21-
*
2220
* @author Robert Schönthal <robert.schoenthal@gmail.com>
2321
* @author Bernhard Schussek <bschussek@gmail.com>
2422
*/

src/Symfony/Component/Form/Extension/DataCollector/EventListener/DataCollectorListener.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@
2020
* Listener that invokes a data collector for the {@link FormEvents::POST_SET_DATA}
2121
* and {@link FormEvents::POST_SUBMIT} events.
2222
*
23-
* @since 2.4
24-
*
2523
* @author Bernhard Schussek <bschussek@gmail.com>
2624
*/
2725
class DataCollectorListener implements EventSubscriberInterface

src/Symfony/Component/Form/Extension/DataCollector/FormDataCollector.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@
2020
/**
2121
* Data collector for {@link FormInterface} instances.
2222
*
23-
* @since 2.4
24-
*
2523
* @author Robert Schönthal <robert.schoenthal@gmail.com>
2624
* @author Bernhard Schussek <bschussek@gmail.com>
2725
*/

src/Symfony/Component/Form/Extension/DataCollector/FormDataCollectorInterface.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
/**
1919
* Collects and structures information about forms.
2020
*
21-
* @since 2.4
22-
*
2321
* @author Bernhard Schussek <bschussek@gmail.com>
2422
*/
2523
interface FormDataCollectorInterface extends DataCollectorInterface

src/Symfony/Component/Form/Extension/DataCollector/FormDataExtractor.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
/**
2020
* Default implementation of {@link FormDataExtractorInterface}.
2121
*
22-
* @since 2.4
23-
*
2422
* @author Bernhard Schussek <bschussek@gmail.com>
2523
*/
2624
class FormDataExtractor implements FormDataExtractorInterface

src/Symfony/Component/Form/Extension/DataCollector/FormDataExtractorInterface.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
/**
1818
* Extracts arrays of information out of forms.
1919
*
20-
* @since 2.4
21-
*
2220
* @author Bernhard Schussek <bschussek@gmail.com>
2321
*/
2422
interface FormDataExtractorInterface

0 commit comments

Comments
 (0)