GenericBatchElement   A
last analyzed

Complexity

Total Complexity 4

Size/Duplication

Total Lines 19
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 4
eloc 4
c 1
b 0
f 0
dl 0
loc 19
rs 10

4 Methods

Rating   Name   Duplication   Size   Complexity  
A configureOptions() 0 2 1
A getSuccessRoute() 0 3 1
A getSuccessRouteParameters() 0 3 1
A getRoute() 0 3 1
1
<?php
2
3
/**
4
 * (c) FSi sp. z o.o. <[email protected]>
5
 *
6
 * For the full copyright and license information, please view the LICENSE
7
 * file that was distributed with this source code.
8
 */
9
10
declare(strict_types=1);
11
12
namespace FSi\Bundle\AdminBundle\Admin\CRUD;
13
14
use FSi\Bundle\AdminBundle\Admin\AbstractElement;
15
use Symfony\Component\OptionsResolver\OptionsResolver;
16
17
abstract class GenericBatchElement extends AbstractElement implements BatchElement
18
{
19
    public function getRoute(): string
20
    {
21
        return 'fsi_admin_batch';
22
    }
23
24
    public function configureOptions(OptionsResolver $resolver): void
25
    {
26
    }
27
28
    public function getSuccessRoute(): string
29
    {
30
        return 'fsi_admin';
31
    }
32
33
    public function getSuccessRouteParameters(): array
34
    {
35
        return [];
36
    }
37
}
38