Exporter.php 637 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /*
  3. * This file is part of the Sonata Project package.
  4. *
  5. * (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
  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 Sonata\AdminBundle\Export;
  11. use Sonata\CoreBundle\Exporter\Exporter as BaseExporter;
  12. @trigger_error(
  13. 'The '.__NAMESPACE__.'\Exporter class is deprecated since version 3.14 and will be removed in 4.0.'.
  14. ' Use Exporter\Exporter instead',
  15. E_USER_DEPRECATED
  16. );
  17. /**
  18. * NEXT_MAJOR: remove this class.
  19. *
  20. * @deprecated
  21. */
  22. class Exporter extends BaseExporter
  23. {
  24. }