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

FakeAdmin::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

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