Completed
Push — refonte ( 50d758...cd6451 )
by Arnaud
02:04
created

FakeAdmin   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 9
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 6 1
1
<?php
2
3
namespace LAG\AdminBundle\Tests\Fixtures;
4
5
use LAG\AdminBundle\Configuration\AdminConfiguration;
6
use LAG\AdminBundle\Resource\AdminResource;
7
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
8
9
class FakeAdmin
10
{
11
    public function __construct(
12
        AdminResource $resource,
0 ignored issues
show
Unused Code introduced by
The parameter $resource is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
13
        AdminConfiguration $configuration,
0 ignored issues
show
Unused Code introduced by
The parameter $configuration is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
14
        EventDispatcherInterface $eventDispatcher
0 ignored issues
show
Unused Code introduced by
The parameter $eventDispatcher is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
15
    ) {
16
    }
17
}
18