Admin.php 745 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\Admin;
  11. @trigger_error(
  12. 'The '.__NAMESPACE__.'\Admin class is deprecated since version 3.1 and will be removed in 4.0.'
  13. .' Use '.__NAMESPACE__.'\AbstractAdmin instead.',
  14. E_USER_DEPRECATED
  15. );
  16. /**
  17. * NEXT_MAJOR: remove this class.
  18. *
  19. * @deprecated since version 3.1, to be removed in 4.0. Use Sonata\AdminBundle\AbstractAdmin instead
  20. *
  21. * @author Thomas Rabaix <thomas.rabaix@sonata-project.org>
  22. */
  23. abstract class Admin extends AbstractAdmin
  24. {
  25. }