Completed
Push — refonte ( 1e3261...545937 )
by Arnaud
02:13
created

ActionFixture::getConfiguration()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 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