BaseEventSubscriber   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 15
ccs 0
cts 4
cp 0
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A setEntityManager() 0 4 1
1
<?php
2
3
namespace Happyr\SimpleBusBundle\Message;
4
5
use Doctrine\ORM\EntityManagerInterface;
6
7
/**
8
 * @author Tobias Nyholm <[email protected]>
9
 */
10
abstract class BaseEventSubscriber implements AutoRegisteredEventSubscriber
11
{
12
    /**
13
     * @var EntityManagerInterface em
14
     */
15
    protected $em;
16
17
    /**
18
     * @param EntityManagerInterface $em
19
     */
20
    public function setEntityManager(EntityManagerInterface $em)
21
    {
22
        $this->em = $em;
23
    }
24
}
25