[Config] removed deprecated ReferenceDumper class.

This commit is contained in:
Hugo Hamon 2015-01-03 12:33:20 +01:00
parent afcf52f485
commit a333811d04
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
{
}