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

TestAction   A

Complexity

Total Complexity 6

Size/Duplication

Total Lines 26
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 6
lcom 0
cbo 0
dl 0
loc 26
rs 10
c 0
b 0
f 0

6 Methods

Rating   Name   Duplication   Size   Complexity  
A setConfiguration() 0 3 1
A getConfiguration() 0 3 1
A isLoadingRequired() 0 3 1
A getName() 0 3 1
A setAdmin() 0 3 1
A getAdmin() 0 3 1
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