<?php
namespace App\Admin\Admin\V2;
use Sonata\AdminBundle\Admin\Admin;
use Sonata\AdminBundle\Route\RouteCollection;
class PaymentStatisticsAdmin extends Admin
{
protected $baseRoutePattern = 'v2-payment-statistics';
protected $baseRouteName = 'v2paymentStatistics';
protected function configureRoutes(RouteCollection $collection)
{
$collection->clearExcept(array('list'));
}
}