CommentWithCustomRouteAdmin.php 302 B

123456789101112
  1. <?php
  2. namespace Sonata\AdminBundle\Tests\Fixtures\Admin;
  3. use Sonata\AdminBundle\Admin\Admin;
  4. use Sonata\AdminBundle\Route\RouteCollection;
  5. class CommentWithCustomRouteAdmin extends CommentAdmin
  6. {
  7. protected $baseRoutePattern = 'comment-custom';
  8. protected $baseRouteName = 'comment_custom';
  9. }