Completed
Push — refonte ( 7173e3...bffa4c )
by Arnaud
02:33
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
<?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,
13
        AdminConfiguration $configuration,
14
        EventDispatcherInterface $eventDispatcher
15
    ) {
16
    }
17
}
18