Completed
Push — refonte ( 7173e3...bffa4c )
by Arnaud
02:33
created

ActionFixture   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 0
dl 0
loc 11
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace LAG\AdminBundle\Tests\Fixtures;
4
5
use LAG\AdminBundle\Admin\ActionInterface;
6
use LAG\AdminBundle\Configuration\ActionConfiguration;
7
8
class ActionFixture implements ActionInterface
9
{
10
    public function getName(): string
11
    {
12
        return 'test';
13
    }
14
15
    public function getConfiguration(): ActionConfiguration
16
    {
17
    }
18
}
19