PostWithCustomRouteAdmin.php 208 B

123456789
  1. <?php
  2. namespace Sonata\AdminBundle\Tests\Fixtures\Admin;
  3. class PostWithCustomRouteAdmin extends PostAdmin
  4. {
  5. protected $baseRoutePattern = '/post-custom';
  6. protected $baseRouteName = 'post_custom';
  7. }