ReferenceDumper.php 802 B

12345678910111213141516171819202122232425
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Config\Definition;
  11. @trigger_error('The '.__NAMESPACE__.'\ReferenceDumper class is deprecated since Symfony 2.4 and will be removed in 3.0. Use the Symfony\Component\Config\Definition\Dumper\YamlReferenceDumper class instead.', E_USER_DEPRECATED);
  12. use Symfony\Component\Config\Definition\Dumper\YamlReferenceDumper;
  13. /**
  14. * @deprecated since version 2.4, to be removed in 3.0.
  15. * Use {@link \Symfony\Component\Config\Definition\Dumper\YamlReferenceDumper} instead.
  16. */
  17. class ReferenceDumper extends YamlReferenceDumper
  18. {
  19. }