1234567891011121314151617181920212223242526272829 |
- <?php
- namespace Sonata\AdminBundle\Admin;
- @trigger_error(
- 'The '.__NAMESPACE__.'\Admin class is deprecated since version 3.1 and will be removed in 4.0.'
- .' Use '.__NAMESPACE__.'\AbstractAdmin instead.',
- E_USER_DEPRECATED
- );
- abstract class Admin extends AbstractAdmin
- {
- }
|