feature #13216 [3.0] [Config] removed deprecated ReferenceDumper class. (hhamon)

This PR was merged into the 3.0-dev branch.

Discussion
----------

[3.0] [Config] removed deprecated ReferenceDumper class.

| Q             | A
| ------------- | ---
| Bug fix?      | no
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | ~
| License       | MIT
| Doc PR        | ~

Commits
-------

a333811 [Config] removed deprecated ReferenceDumper class.
This commit is contained in:
Fabien Potencier 2015-01-03 22:08:12 +01:00
commit 900f78ab5a
2 changed files with 8 additions and 24 deletions

View File

@ -1,15 +1,20 @@
CHANGELOG
=========
3.0.0
-----
* removed `ReferenceDumper` class
2.2.0
-----
* added ArrayNodeDefinition::canBeEnabled() and ArrayNodeDefinition::canBeDisabled()
* added `ArrayNodeDefinition::canBeEnabled()` and `ArrayNodeDefinition::canBeDisabled()`
to ease configuration when some sections are respectively disabled / enabled
by default.
* added a `normalizeKeys()` method for array nodes (to avoid key normalization)
* added numerical type handling for config definitions
* added convenience methods for optional configuration sections to ArrayNodeDefinition
* added convenience methods for optional configuration sections to `ArrayNodeDefinition`
* added a utils class for XML manipulations
2.1.0
@ -17,5 +22,5 @@ CHANGELOG
* added a way to add documentation on configuration
* implemented `Serializable` on resources
* LoaderResolverInterface is now used instead of LoaderResolver for type
* `LoaderResolverInterface` is now used instead of `LoaderResolver` for type
hinting

View File

@ -1,21 +0,0 @@
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Config\Definition;
use Symfony\Component\Config\Definition\Dumper\YamlReferenceDumper;
/**
* @deprecated Deprecated since version 2.4, to be removed in 3.0. Use Symfony\Component\Config\Definition\Dumper\YamlReferenceDumper instead.
*/
class ReferenceDumper extends YamlReferenceDumper
{
}