Completed
Push — master ( baba12...502b0f )
by Andreas
08:34
created

InvokableEntityListener   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __invoke() 0 3 1
A postPersist() 0 3 1
1
<?php
2
3
namespace Doctrine\Bundle\DoctrineBundle\Tests\DependencyInjection\Fixtures;
4
5
final class InvokableEntityListener
6
{
7
    public function __invoke() : void
8
    {
9
    }
10
11
    public function postPersist() : void
12
    {
13
    }
14
}
15