Exporter.php 786 B

12345678910111213141516171819202122232425262728293031323334
  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 Exporter;
  11. if (!class_exists('\Sonata\\'.__NAMESPACE__.'\Exporter', false)) {
  12. @trigger_error(
  13. 'The '.__NAMESPACE__.'\Exporter class is deprecated since version 1.x and will be removed in 2.0.'
  14. .' Use \Sonata\\'.__NAMESPACE__.'\Exporter instead',
  15. E_USER_DEPRECATED
  16. );
  17. }
  18. class_alias(
  19. '\Sonata\\'.__NAMESPACE__.'\Exporter',
  20. __NAMESPACE__.'\Exporter'
  21. );
  22. if (false) {
  23. /**
  24. * @deprecated since version 1.x, to be removed in 2.0.
  25. */
  26. final class Exporter
  27. {
  28. }
  29. }