Completed
Push — refonte ( 64e01a...7173e3 )
by Arnaud
03:31
created

TestAction::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\Action;
4
5
use LAG\AdminBundle\Action\ActionInterface;
6
use LAG\AdminBundle\Action\Configuration\ActionConfiguration;
7
use LAG\AdminBundle\Admin\AdminInterface;
8
9
class TestAction implements ActionInterface
10
{
11
    public function setConfiguration(ActionConfiguration $actionConfiguration)
12
    {
13
    }
14
15
    public function getConfiguration()
16
    {
17
    }
18
19
    public function isLoadingRequired()
20
    {
21
    }
22
    
23
    public function getName()
24
    {
25
    }
26
27
    public function setAdmin(AdminInterface $admin)
28
    {
29
    }
30
31
    public function getAdmin()
32
    {
33
    }
34
}
35